aboutsummaryrefslogtreecommitdiff
path: root/tests/compile-pass/impls/inherent_methods.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/compile-pass/impls/inherent_methods.rs')
-rw-r--r--tests/compile-pass/impls/inherent_methods.rs15
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/compile-pass/impls/inherent_methods.rs b/tests/compile-pass/impls/inherent_methods.rs
new file mode 100644
index 0000000..3052c46
--- /dev/null
+++ b/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() {}