aboutsummaryrefslogtreecommitdiff
path: root/vendor/bitflags-1.3.2/tests/compile-pass/impls/inherent_methods.rs
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/bitflags-1.3.2/tests/compile-pass/impls/inherent_methods.rs')
-rw-r--r--vendor/bitflags-1.3.2/tests/compile-pass/impls/inherent_methods.rs15
1 files changed, 0 insertions, 15 deletions
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() {}