aboutsummaryrefslogtreecommitdiff
path: root/1.3.2/tests/compile-pass/visibility/pub_in.rs
diff options
context:
space:
mode:
Diffstat (limited to '1.3.2/tests/compile-pass/visibility/pub_in.rs')
-rw-r--r--1.3.2/tests/compile-pass/visibility/pub_in.rs19
1 files changed, 19 insertions, 0 deletions
diff --git a/1.3.2/tests/compile-pass/visibility/pub_in.rs b/1.3.2/tests/compile-pass/visibility/pub_in.rs
new file mode 100644
index 0000000..c11050e
--- /dev/null
+++ b/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());
+}