]> git.proxmox.com Git - rustc.git/blobdiff - src/test/rustdoc/impl-parts.rs
Update unsuspicious file list
[rustc.git] / src / test / rustdoc / impl-parts.rs
index b1481e1f27978045e6864c92d42841fdf5d0755a..90cbb77cb6b60a013b1b8475bfa9bdde21204227 100644 (file)
@@ -5,8 +5,8 @@ pub auto trait AnAutoTrait {}
 
 pub struct Foo<T> { field: T }
 
-// @has impl_parts/struct.Foo.html '//*[@class="impl has-srclink"]//h3[@class="code-header in-band"]' \
-//     "impl<T: Clone> !AnAutoTrait for Foo<T>where T: Sync,"
-// @has impl_parts/trait.AnAutoTrait.html '//*[@class="item-list"]//h3[@class="code-header in-band"]' \
-//     "impl<T: Clone> !AnAutoTrait for Foo<T>where T: Sync,"
+// @has impl_parts/struct.Foo.html '//*[@class="impl has-srclink"]//h3[@class="code-header"]' \
+//     "impl<T> !AnAutoTrait for Foo<T>where T: Sync + Clone,"
+// @has impl_parts/trait.AnAutoTrait.html '//*[@id="implementors-list"]//h3[@class="code-header"]' \
+//     "impl<T> !AnAutoTrait for Foo<T>where T: Sync + Clone,"
 impl<T: Clone> !AnAutoTrait for Foo<T> where T: Sync {}