diff options
Diffstat (limited to 'tests/ui/methods/method-resolvable-path-in-pattern.rs')
-rw-r--r-- | tests/ui/methods/method-resolvable-path-in-pattern.rs | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/ui/methods/method-resolvable-path-in-pattern.rs b/tests/ui/methods/method-resolvable-path-in-pattern.rs new file mode 100644 index 000000000..2973800a4 --- /dev/null +++ b/tests/ui/methods/method-resolvable-path-in-pattern.rs @@ -0,0 +1,14 @@ +struct Foo; + +trait MyTrait { + fn trait_bar() {} +} + +impl MyTrait for Foo {} + +fn main() { + match 0u32 { + <Foo as MyTrait>::trait_bar => {} + //~^ ERROR expected unit struct, unit variant or constant, found associated function + } +} |