blob: 01e5313fcc1d928705318f8bf82bc87e1b826ab8 [file] [log] [blame]
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`
|
= note: `#[warn(bindings_with_variant_name)]` on by default
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`