2017-05-13 17:54:50 +08:00
|
|
|
warning[E0170]: pattern binding `Bar` is named the same as one of the variants of the type `Foo`
|
2018-06-23 16:46:41 -07:00
|
|
|
--> $DIR/issue-19100.rs:28:1
|
2017-05-13 17:54:50 +08:00
|
|
|
|
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | Bar if true
|
2018-06-23 16:46:41 -07:00
|
|
|
| ^^^ help: to match on the variant, qualify the path: `Foo::Bar`
|
2017-05-13 17:54:50 +08:00
|
|
|
|
|
|
|
warning[E0170]: pattern binding `Baz` is named the same as one of the variants of the type `Foo`
|
2018-06-23 16:46:41 -07:00
|
|
|
--> $DIR/issue-19100.rs:32:1
|
2017-05-13 17:54:50 +08:00
|
|
|
|
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | Baz if false
|
2018-06-23 16:46:41 -07:00
|
|
|
| ^^^ help: to match on the variant, qualify the path: `Foo::Baz`
|
2017-05-13 17:54:50 +08:00
|
|
|
|