rust/src/test/ui/issues/issue-19100.stderr
2018-12-25 21:08:33 -07:00

13 lines
441 B
Plaintext

warning[E0170]: pattern binding `Bar` is named the same as one of the variants of the type `Foo`
--> $DIR/issue-19100.rs:18:1
|
LL | Bar if true
| ^^^ help: to match on the variant, qualify the path: `Foo::Bar`
warning[E0170]: pattern binding `Baz` is named the same as one of the variants of the type `Foo`
--> $DIR/issue-19100.rs:22:1
|
LL | Baz if false
| ^^^ help: to match on the variant, qualify the path: `Foo::Baz`