diff options
Diffstat (limited to 'vendor/bitflags-1.3.2/tests/compile-pass/impls/inherent_methods.rs')
-rw-r--r-- | vendor/bitflags-1.3.2/tests/compile-pass/impls/inherent_methods.rs | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/vendor/bitflags-1.3.2/tests/compile-pass/impls/inherent_methods.rs b/vendor/bitflags-1.3.2/tests/compile-pass/impls/inherent_methods.rs new file mode 100644 index 0000000..3052c46 --- /dev/null +++ b/vendor/bitflags-1.3.2/tests/compile-pass/impls/inherent_methods.rs @@ -0,0 +1,15 @@ +use bitflags::bitflags; + +bitflags! { + struct Flags: u32 { + const A = 0b00000001; + } +} + +impl Flags { + pub fn new() -> Flags { + Flags::A + } +} + +fn main() {} |