summaryrefslogtreecommitdiffstats
path: root/src/test/ui/coherence/auxiliary/coherence_copy_like_lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/coherence/auxiliary/coherence_copy_like_lib.rs')
-rw-r--r--src/test/ui/coherence/auxiliary/coherence_copy_like_lib.rs10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/test/ui/coherence/auxiliary/coherence_copy_like_lib.rs b/src/test/ui/coherence/auxiliary/coherence_copy_like_lib.rs
deleted file mode 100644
index b5b4802c1..000000000
--- a/src/test/ui/coherence/auxiliary/coherence_copy_like_lib.rs
+++ /dev/null
@@ -1,10 +0,0 @@
-#![crate_type = "rlib"]
-#![feature(fundamental)]
-
-pub trait MyCopy { }
-impl MyCopy for i32 { }
-
-pub struct MyStruct<T>(T);
-
-#[fundamental]
-pub struct MyFundamentalStruct<T>(T);