summaryrefslogtreecommitdiffstats
path: root/src/test/ui/coherence/coherence-blanket.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/coherence/coherence-blanket.rs')
-rw-r--r--src/test/ui/coherence/coherence-blanket.rs16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/test/ui/coherence/coherence-blanket.rs b/src/test/ui/coherence/coherence-blanket.rs
deleted file mode 100644
index 55fa89d75..000000000
--- a/src/test/ui/coherence/coherence-blanket.rs
+++ /dev/null
@@ -1,16 +0,0 @@
-// run-pass
-#![allow(unused_imports)]
-// aux-build:coherence_lib.rs
-
-// pretty-expanded FIXME #23616
-
-extern crate coherence_lib as lib;
-use lib::Remote1;
-
-pub trait Local {
- fn foo(&self) { }
-}
-
-impl<T> Local for T { }
-
-fn main() { }