rust/src/test/ui/issues/issue-19100.stderr

15 lines
509 B
Plaintext
Raw Normal View History

warning[E0170]: pattern binding `Bar` is named the same as one of the variants of the type `Foo`
2018-12-25 09:56:47 -06:00
--> $DIR/issue-19100.rs:18:1
|
2018-02-22 18:42:32 -06:00
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`
2018-12-25 09:56:47 -06:00
--> $DIR/issue-19100.rs:22:1
|
2018-02-22 18:42:32 -06:00
LL | Baz if false
| ^^^ help: to match on the variant, qualify the path: `Foo::Baz`