From 1b6a04ca5504955c571d1c97504fb45ea0befee4 Mon Sep 17 00:00:00 2001 From: Valentin Popov Date: Mon, 8 Jan 2024 01:21:28 +0400 Subject: Initial vendor packages Signed-off-by: Valentin Popov --- .../tests/compile-pass/impls/convert.rs | 17 +++++++++++++++++ .../tests/compile-pass/impls/default.rs | 10 ++++++++++ .../tests/compile-pass/impls/inherent_methods.rs | 15 +++++++++++++++ .../tests/compile-pass/redefinition/core.rs | 14 ++++++++++++++ .../tests/compile-pass/redefinition/stringify.rs | 19 +++++++++++++++++++ vendor/bitflags-1.3.2/tests/compile-pass/repr/c.rs | 10 ++++++++++ .../tests/compile-pass/repr/transparent.rs | 10 ++++++++++ .../tests/compile-pass/visibility/bits_field.rs | 11 +++++++++++ .../tests/compile-pass/visibility/pub_in.rs | 19 +++++++++++++++++++ 9 files changed, 125 insertions(+) create mode 100644 vendor/bitflags-1.3.2/tests/compile-pass/impls/convert.rs create mode 100644 vendor/bitflags-1.3.2/tests/compile-pass/impls/default.rs create mode 100644 vendor/bitflags-1.3.2/tests/compile-pass/impls/inherent_methods.rs create mode 100644 vendor/bitflags-1.3.2/tests/compile-pass/redefinition/core.rs create mode 100644 vendor/bitflags-1.3.2/tests/compile-pass/redefinition/stringify.rs create mode 100644 vendor/bitflags-1.3.2/tests/compile-pass/repr/c.rs create mode 100644 vendor/bitflags-1.3.2/tests/compile-pass/repr/transparent.rs create mode 100644 vendor/bitflags-1.3.2/tests/compile-pass/visibility/bits_field.rs create mode 100644 vendor/bitflags-1.3.2/tests/compile-pass/visibility/pub_in.rs (limited to 'vendor/bitflags-1.3.2/tests/compile-pass') diff --git a/vendor/bitflags-1.3.2/tests/compile-pass/impls/convert.rs b/vendor/bitflags-1.3.2/tests/compile-pass/impls/convert.rs new file mode 100644 index 0000000..1f02982 --- /dev/null +++ b/vendor/bitflags-1.3.2/tests/compile-pass/impls/convert.rs @@ -0,0 +1,17 @@ +use bitflags::bitflags; + +bitflags! { + struct Flags: u32 { + const A = 0b00000001; + } +} + +impl From for Flags { + fn from(v: u32) -> Flags { + Flags::from_bits_truncate(v) + } +} + +fn main() { + +} diff --git a/vendor/bitflags-1.3.2/tests/compile-pass/impls/default.rs b/vendor/bitflags-1.3.2/tests/compile-pass/impls/default.rs new file mode 100644 index 0000000..a97b653 --- /dev/null +++ b/vendor/bitflags-1.3.2/tests/compile-pass/impls/default.rs @@ -0,0 +1,10 @@ +use bitflags::bitflags; + +bitflags! { + #[derive(Default)] + struct Flags: u32 { + const A = 0b00000001; + } +} + +fn main() {} 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() {} diff --git a/vendor/bitflags-1.3.2/tests/compile-pass/redefinition/core.rs b/vendor/bitflags-1.3.2/tests/compile-pass/redefinition/core.rs new file mode 100644 index 0000000..4754921 --- /dev/null +++ b/vendor/bitflags-1.3.2/tests/compile-pass/redefinition/core.rs @@ -0,0 +1,14 @@ +use bitflags::bitflags; + +// Checks for possible errors caused by overriding names used by `bitflags!` internally. + +mod core {} +mod _core {} + +bitflags! { + struct Test: u8 { + const A = 1; + } +} + +fn main() {} diff --git a/vendor/bitflags-1.3.2/tests/compile-pass/redefinition/stringify.rs b/vendor/bitflags-1.3.2/tests/compile-pass/redefinition/stringify.rs new file mode 100644 index 0000000..b04f2f6 --- /dev/null +++ b/vendor/bitflags-1.3.2/tests/compile-pass/redefinition/stringify.rs @@ -0,0 +1,19 @@ +use bitflags::bitflags; + +// Checks for possible errors caused by overriding names used by `bitflags!` internally. + +#[allow(unused_macros)] +macro_rules! stringify { + ($($t:tt)*) => { "..." }; +} + +bitflags! { + struct Test: u8 { + const A = 1; + } +} + +fn main() { + // Just make sure we don't call the redefined `stringify` macro + assert_eq!(format!("{:?}", Test::A), "A"); +} diff --git a/vendor/bitflags-1.3.2/tests/compile-pass/repr/c.rs b/vendor/bitflags-1.3.2/tests/compile-pass/repr/c.rs new file mode 100644 index 0000000..6feba36 --- /dev/null +++ b/vendor/bitflags-1.3.2/tests/compile-pass/repr/c.rs @@ -0,0 +1,10 @@ +use bitflags::bitflags; + +bitflags! { + #[repr(C)] + struct Flags: u32 { + const A = 0b00000001; + } +} + +fn main() {} diff --git a/vendor/bitflags-1.3.2/tests/compile-pass/repr/transparent.rs b/vendor/bitflags-1.3.2/tests/compile-pass/repr/transparent.rs new file mode 100644 index 0000000..e38db4d --- /dev/null +++ b/vendor/bitflags-1.3.2/tests/compile-pass/repr/transparent.rs @@ -0,0 +1,10 @@ +use bitflags::bitflags; + +bitflags! { + #[repr(transparent)] + struct Flags: u32 { + const A = 0b00000001; + } +} + +fn main() {} diff --git a/vendor/bitflags-1.3.2/tests/compile-pass/visibility/bits_field.rs b/vendor/bitflags-1.3.2/tests/compile-pass/visibility/bits_field.rs new file mode 100644 index 0000000..33a7967 --- /dev/null +++ b/vendor/bitflags-1.3.2/tests/compile-pass/visibility/bits_field.rs @@ -0,0 +1,11 @@ +use bitflags::bitflags; + +bitflags! { + pub struct Flags1: u32 { + const FLAG_A = 0b00000001; + } +} + +fn main() { + assert_eq!(0b00000001, Flags1::FLAG_A.bits); +} 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()); +} -- cgit v1.2.3