summaryrefslogtreecommitdiffstats
path: root/src/test/ui/coherence/coherence-negative-inherent.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/coherence/coherence-negative-inherent.rs')
-rw-r--r--src/test/ui/coherence/coherence-negative-inherent.rs22
1 files changed, 0 insertions, 22 deletions
diff --git a/src/test/ui/coherence/coherence-negative-inherent.rs b/src/test/ui/coherence/coherence-negative-inherent.rs
deleted file mode 100644
index a9e1acc80..000000000
--- a/src/test/ui/coherence/coherence-negative-inherent.rs
+++ /dev/null
@@ -1,22 +0,0 @@
-// check-pass
-
-#![feature(negative_impls)]
-#![feature(rustc_attrs)]
-#![feature(with_negative_coherence)]
-
-#[rustc_strict_coherence]
-trait Foo {}
-
-impl !Foo for u32 {}
-
-struct MyStruct<T>(T);
-
-impl<T: Foo> MyStruct<T> {
- fn method(&self) {}
-}
-
-impl MyStruct<u32> {
- fn method(&self) {}
-}
-
-fn main() {}