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