summaryrefslogtreecommitdiffstats
path: root/src/test/ui/coherence/coherence-overlapping-pairs.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/coherence/coherence-overlapping-pairs.rs')
-rw-r--r--src/test/ui/coherence/coherence-overlapping-pairs.rs11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/test/ui/coherence/coherence-overlapping-pairs.rs b/src/test/ui/coherence/coherence-overlapping-pairs.rs
deleted file mode 100644
index d5d18217b..000000000
--- a/src/test/ui/coherence/coherence-overlapping-pairs.rs
+++ /dev/null
@@ -1,11 +0,0 @@
-// aux-build:coherence_lib.rs
-
-extern crate coherence_lib as lib;
-use lib::Remote;
-
-struct Foo;
-
-impl<T> Remote for lib::Pair<T,Foo> { }
-//~^ ERROR E0117
-
-fn main() { }