summaryrefslogtreecommitdiffstats
path: root/src/test/rustdoc/impl-parts.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/rustdoc/impl-parts.rs')
-rw-r--r--src/test/rustdoc/impl-parts.rs12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/test/rustdoc/impl-parts.rs b/src/test/rustdoc/impl-parts.rs
deleted file mode 100644
index 90cbb77cb..000000000
--- a/src/test/rustdoc/impl-parts.rs
+++ /dev/null
@@ -1,12 +0,0 @@
-#![feature(negative_impls)]
-#![feature(auto_traits)]
-
-pub auto trait AnAutoTrait {}
-
-pub struct Foo<T> { field: T }
-
-// @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 {}