diff options
Diffstat (limited to 'third_party/rust/bitflags/tests/compile-pass/repr/transparent.rs')
-rw-r--r-- | third_party/rust/bitflags/tests/compile-pass/repr/transparent.rs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/third_party/rust/bitflags/tests/compile-pass/repr/transparent.rs b/third_party/rust/bitflags/tests/compile-pass/repr/transparent.rs new file mode 100644 index 0000000000..e38db4dd11 --- /dev/null +++ b/third_party/rust/bitflags/tests/compile-pass/repr/transparent.rs @@ -0,0 +1,10 @@ +use bitflags::bitflags; + +bitflags! { + #[repr(transparent)] + struct Flags: u32 { + const A = 0b00000001; + } +} + +fn main() {} |