summaryrefslogtreecommitdiffstats
path: root/src/test/ui/methods/method-path-in-pattern.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/methods/method-path-in-pattern.rs')
-rw-r--r--src/test/ui/methods/method-path-in-pattern.rs32
1 files changed, 0 insertions, 32 deletions
diff --git a/src/test/ui/methods/method-path-in-pattern.rs b/src/test/ui/methods/method-path-in-pattern.rs
deleted file mode 100644
index 406453095..000000000
--- a/src/test/ui/methods/method-path-in-pattern.rs
+++ /dev/null
@@ -1,32 +0,0 @@
-struct Foo;
-
-impl Foo {
- fn bar(&self) {}
-}
-
-trait MyTrait {
- fn trait_bar() {}
-}
-
-impl MyTrait for Foo {}
-
-fn main() {
- match 0u32 {
- Foo::bar => {}
- //~^ ERROR expected unit struct, unit variant or constant, found associated function
- }
- match 0u32 {
- <Foo>::bar => {}
- //~^ ERROR expected unit struct, unit variant or constant, found associated function
- }
- match 0u32 {
- <Foo>::trait_bar => {}
- //~^ ERROR expected unit struct, unit variant or constant, found associated function
- }
- if let Foo::bar = 0u32 {}
- //~^ ERROR expected unit struct, unit variant or constant, found associated function
- if let <Foo>::bar = 0u32 {}
- //~^ ERROR expected unit struct, unit variant or constant, found associated function
- if let Foo::trait_bar = 0u32 {}
- //~^ ERROR expected unit struct, unit variant or constant, found associated function
-}