summaryrefslogtreecommitdiffstats
path: root/src/test/ui/coherence/coherence-covered-type-parameter.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/coherence/coherence-covered-type-parameter.rs')
-rw-r--r--src/test/ui/coherence/coherence-covered-type-parameter.rs14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/test/ui/coherence/coherence-covered-type-parameter.rs b/src/test/ui/coherence/coherence-covered-type-parameter.rs
deleted file mode 100644
index bb95c59d1..000000000
--- a/src/test/ui/coherence/coherence-covered-type-parameter.rs
+++ /dev/null
@@ -1,14 +0,0 @@
-// run-pass
-#![allow(dead_code)]
-// aux-build:coherence_lib.rs
-
-// pretty-expanded FIXME #23616
-
-extern crate coherence_lib as lib;
-use lib::Remote;
-
-struct Foo<T>(T);
-
-impl<T> Remote for Foo<T> { }
-
-fn main() { }