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