summaryrefslogtreecommitdiffstats
path: root/src/test/ui/span/E0204.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/span/E0204.rs')
-rw-r--r--src/test/ui/span/E0204.rs26
1 files changed, 26 insertions, 0 deletions
diff --git a/src/test/ui/span/E0204.rs b/src/test/ui/span/E0204.rs
new file mode 100644
index 000000000..174de8cdd
--- /dev/null
+++ b/src/test/ui/span/E0204.rs
@@ -0,0 +1,26 @@
+struct Foo {
+ foo: Vec<u32>,
+}
+
+impl Copy for Foo { } //~ ERROR may not be implemented for this type
+
+#[derive(Copy)] //~ ERROR may not be implemented for this type
+struct Foo2<'a> {
+ ty: &'a mut bool,
+}
+
+enum EFoo {
+ Bar { x: Vec<u32> },
+ Baz,
+}
+
+impl Copy for EFoo { } //~ ERROR may not be implemented for this type
+
+#[derive(Copy)] //~ ERROR may not be implemented for this type
+enum EFoo2<'a> {
+ Bar(&'a mut bool),
+ Baz,
+}
+
+fn main() {
+}