summaryrefslogtreecommitdiffstats
path: root/src/test/ui/coherence/auxiliary/coherence_inherent_cc_lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/coherence/auxiliary/coherence_inherent_cc_lib.rs')
-rw-r--r--src/test/ui/coherence/auxiliary/coherence_inherent_cc_lib.rs11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/test/ui/coherence/auxiliary/coherence_inherent_cc_lib.rs b/src/test/ui/coherence/auxiliary/coherence_inherent_cc_lib.rs
deleted file mode 100644
index 08d22fbed..000000000
--- a/src/test/ui/coherence/auxiliary/coherence_inherent_cc_lib.rs
+++ /dev/null
@@ -1,11 +0,0 @@
-// See coherence_inherent_cc.rs
-
-pub trait TheTrait {
- fn the_fn(&self);
-}
-
-pub struct TheStruct;
-
-impl TheTrait for TheStruct {
- fn the_fn(&self) {}
-}