summaryrefslogtreecommitdiffstats
path: root/src/test/ui/coherence/coherence-cross-crate-conflict.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/coherence/coherence-cross-crate-conflict.rs')
-rw-r--r--src/test/ui/coherence/coherence-cross-crate-conflict.rs13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/test/ui/coherence/coherence-cross-crate-conflict.rs b/src/test/ui/coherence/coherence-cross-crate-conflict.rs
deleted file mode 100644
index 588630957..000000000
--- a/src/test/ui/coherence/coherence-cross-crate-conflict.rs
+++ /dev/null
@@ -1,13 +0,0 @@
-// The error here is strictly due to orphan rules; the impl here
-// generalizes the one upstream
-
-// aux-build:trait_impl_conflict.rs
-
-extern crate trait_impl_conflict;
-use trait_impl_conflict::Foo;
-
-impl<A> Foo for A { //~ ERROR E0210
-}
-
-fn main() {
-}