summaryrefslogtreecommitdiffstats
path: root/src/test/ui/coherence/coherence-pair-covered-uncovered-1.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/coherence/coherence-pair-covered-uncovered-1.rs')
-rw-r--r--src/test/ui/coherence/coherence-pair-covered-uncovered-1.rs15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/test/ui/coherence/coherence-pair-covered-uncovered-1.rs b/src/test/ui/coherence/coherence-pair-covered-uncovered-1.rs
deleted file mode 100644
index 15868ca86..000000000
--- a/src/test/ui/coherence/coherence-pair-covered-uncovered-1.rs
+++ /dev/null
@@ -1,15 +0,0 @@
-// Test that the same coverage rules apply even if the local type appears in the
-// list of type parameters, not the self type.
-
-// aux-build:coherence_lib.rs
-
-
-extern crate coherence_lib as lib;
-use lib::{Remote1, Pair};
-
-pub struct Local<T>(T);
-
-impl<T, U> Remote1<Pair<T, Local<U>>> for i32 { }
-//~^ ERROR E0117
-
-fn main() { }