2017-05-13 04:54:50 -05:00
|
|
|
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
|
2017-05-13 04:54:50 -05:00
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | Bar if true
|
2018-06-23 18:46:41 -05:00
|
|
|
| ^^^ help: to match on the variant, qualify the path: `Foo::Bar`
|
2019-12-31 14:25:16 -06:00
|
|
|
|
|
|
|
|
= note: `#[warn(bindings_with_variant_name)]` on by default
|
2017-05-13 04:54:50 -05:00
|
|
|
|
|
|
|
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
|
2017-05-13 04:54:50 -05:00
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | Baz if false
|
2018-06-23 18:46:41 -05:00
|
|
|
| ^^^ help: to match on the variant, qualify the path: `Foo::Baz`
|
2017-05-13 04:54:50 -05:00
|
|
|
|
2020-03-11 10:30:09 -05:00
|
|
|
warning: 2 warnings emitted
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0170`.
|