diff options
Diffstat (limited to 'vendor/bitflags-1.3.2/tests/compile-fail/impls/copy.rs')
-rw-r--r-- | vendor/bitflags-1.3.2/tests/compile-fail/impls/copy.rs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/vendor/bitflags-1.3.2/tests/compile-fail/impls/copy.rs b/vendor/bitflags-1.3.2/tests/compile-fail/impls/copy.rs new file mode 100644 index 0000000..38f4822 --- /dev/null +++ b/vendor/bitflags-1.3.2/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() {} |