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, 0 insertions, 26 deletions
diff --git a/src/test/ui/span/E0204.rs b/src/test/ui/span/E0204.rs
deleted file mode 100644
index 174de8cdd..000000000
--- a/src/test/ui/span/E0204.rs
+++ /dev/null
@@ -1,26 +0,0 @@
-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() {
-}