22 lines
676 B
Plaintext
22 lines
676 B
Plaintext
|
error[E0533]: expected unit struct/variant or constant, found method `<Foo>::bar`
|
||
|
--> $DIR/method-path-in-pattern.rs:25:9
|
||
|
|
|
||
|
LL | Foo::bar => {}
|
||
|
| ^^^^^^^^
|
||
|
|
||
|
error[E0533]: expected unit struct/variant or constant, found method `<Foo>::bar`
|
||
|
--> $DIR/method-path-in-pattern.rs:29:9
|
||
|
|
|
||
|
LL | <Foo>::bar => {}
|
||
|
| ^^^^^^^^^^
|
||
|
|
||
|
error[E0533]: expected unit struct/variant or constant, found method `<Foo>::trait_bar`
|
||
|
--> $DIR/method-path-in-pattern.rs:33:9
|
||
|
|
|
||
|
LL | <Foo>::trait_bar => {}
|
||
|
| ^^^^^^^^^^^^^^^^
|
||
|
|
||
|
error: aborting due to 3 previous errors
|
||
|
|
||
|
For more information about this error, try `rustc --explain E0533`.
|