aboutsummaryrefslogtreecommitdiff
path: root/vendor/bitflags-1.3.2/tests/compile-pass/impls
diff options
context:
space:
mode:
authorValentin Popov <valentin@popov.link>2024-07-19 15:37:58 +0300
committerValentin Popov <valentin@popov.link>2024-07-19 15:37:58 +0300
commita990de90fe41456a23e58bd087d2f107d321f3a1 (patch)
tree15afc392522a9e85dc3332235e311b7d39352ea9 /vendor/bitflags-1.3.2/tests/compile-pass/impls
parent3d48cd3f81164bbfc1a755dc1d4a9a02f98c8ddd (diff)
downloadfparkan-a990de90fe41456a23e58bd087d2f107d321f3a1.tar.xz
fparkan-a990de90fe41456a23e58bd087d2f107d321f3a1.zip
Deleted vendor folder
Diffstat (limited to 'vendor/bitflags-1.3.2/tests/compile-pass/impls')
-rw-r--r--vendor/bitflags-1.3.2/tests/compile-pass/impls/convert.rs17
-rw-r--r--vendor/bitflags-1.3.2/tests/compile-pass/impls/default.rs10
-rw-r--r--vendor/bitflags-1.3.2/tests/compile-pass/impls/inherent_methods.rs15
3 files changed, 0 insertions, 42 deletions
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
deleted file mode 100644
index 1f02982..0000000
--- a/vendor/bitflags-1.3.2/tests/compile-pass/impls/convert.rs
+++ /dev/null
@@ -1,17 +0,0 @@
-use bitflags::bitflags;
-
-bitflags! {
- struct Flags: u32 {
- const A = 0b00000001;
- }
-}
-
-impl From<u32> 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
deleted file mode 100644
index a97b653..0000000
--- a/vendor/bitflags-1.3.2/tests/compile-pass/impls/default.rs
+++ /dev/null
@@ -1,10 +0,0 @@
-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
deleted file mode 100644
index 3052c46..0000000
--- a/vendor/bitflags-1.3.2/tests/compile-pass/impls/inherent_methods.rs
+++ /dev/null
@@ -1,15 +0,0 @@
-use bitflags::bitflags;
-
-bitflags! {
- struct Flags: u32 {
- const A = 0b00000001;
- }
-}
-
-impl Flags {
- pub fn new() -> Flags {
- Flags::A
- }
-}
-
-fn main() {}