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, 19 insertions, 0 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 new file mode 100644 index 0000000..c11050e --- /dev/null +++ b/vendor/bitflags-1.3.2/tests/compile-pass/visibility/pub_in.rs @@ -0,0 +1,19 @@ +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()); +} |