summaryrefslogtreecommitdiffstats
path: root/src/test/ui/coherence/coherence-overlap-double-negative.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/coherence/coherence-overlap-double-negative.rs')
-rw-r--r--src/test/ui/coherence/coherence-overlap-double-negative.rs12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/test/ui/coherence/coherence-overlap-double-negative.rs b/src/test/ui/coherence/coherence-overlap-double-negative.rs
deleted file mode 100644
index 1ea0ddc74..000000000
--- a/src/test/ui/coherence/coherence-overlap-double-negative.rs
+++ /dev/null
@@ -1,12 +0,0 @@
-// check-pass
-
-#![feature(negative_impls)]
-#![feature(with_negative_coherence)]
-
-trait A {}
-trait B: A {}
-
-impl !A for u32 {}
-impl !B for u32 {}
-
-fn main() {}