aboutsummaryrefslogtreecommitdiff
path: root/tests/compile-fail/impls/copy.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/compile-fail/impls/copy.rs')
-rw-r--r--tests/compile-fail/impls/copy.rs10
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/compile-fail/impls/copy.rs b/tests/compile-fail/impls/copy.rs
new file mode 100644
index 0000000..38f4822
--- /dev/null
+++ b/tests/compile-fail/impls/copy.rs
@@ -0,0 +1,10 @@
+use bitflags::bitflags;
+
+bitflags! {
+ #[derive(Clone, Copy)]
+ struct Flags: u32 {
+ const A = 0b00000001;
+ }
+}
+
+fn main() {}