diff options
author | Valentin Popov <valentin@popov.link> | 2024-07-19 15:37:58 +0300 |
---|---|---|
committer | Valentin Popov <valentin@popov.link> | 2024-07-19 15:37:58 +0300 |
commit | a990de90fe41456a23e58bd087d2f107d321f3a1 (patch) | |
tree | 15afc392522a9e85dc3332235e311b7d39352ea9 /vendor/bitflags-1.3.2/tests/compile-pass/visibility/pub_in.rs | |
parent | 3d48cd3f81164bbfc1a755dc1d4a9a02f98c8ddd (diff) | |
download | fparkan-a990de90fe41456a23e58bd087d2f107d321f3a1.tar.xz fparkan-a990de90fe41456a23e58bd087d2f107d321f3a1.zip |
Deleted vendor folder
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()); -} |