diff options
Diffstat (limited to 'vendor/bitflags-1.3.2/tests/compile-pass/visibility/pub_in.rs')
-rw-r--r-- | vendor/bitflags-1.3.2/tests/compile-pass/visibility/pub_in.rs | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/vendor/bitflags-1.3.2/tests/compile-pass/visibility/pub_in.rs b/vendor/bitflags-1.3.2/tests/compile-pass/visibility/pub_in.rs deleted file mode 100644 index c11050e..0000000 --- a/vendor/bitflags-1.3.2/tests/compile-pass/visibility/pub_in.rs +++ /dev/null @@ -1,19 +0,0 @@ -mod a { - mod b { - use bitflags::bitflags; - - bitflags! { - pub(in crate::a) struct Flags: u32 { - const FLAG_A = 0b00000001; - } - } - } - - pub fn flags() -> u32 { - b::Flags::FLAG_A.bits() - } -} - -fn main() { - assert_eq!(0b00000001, a::flags()); -} |