summaryrefslogtreecommitdiff
path: root/vendor/bitflags-1.3.2/tests/compile-pass/impls
diff options
context:
space:
mode:
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, 42 insertions, 0 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
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<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
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() {}