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, 10 insertions, 0 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
new file mode 100644
index 000000000..b5b4802c1
--- /dev/null
+++ b/src/test/ui/coherence/auxiliary/coherence_copy_like_lib.rs
@@ -0,0 +1,10 @@
+#![crate_type = "rlib"]
+#![feature(fundamental)]
+
+pub trait MyCopy { }
+impl MyCopy for i32 { }
+
+pub struct MyStruct<T>(T);
+
+#[fundamental]
+pub struct MyFundamentalStruct<T>(T);