summary refs log tree commit diff
path: root/src/test/ui/issue-19100.stderr
blob: 45e2ef652d5a3e4e66879de9cbb170e3a69c836b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
warning[E0170]: pattern binding `Bar` is named the same as one of the variants of the type `Foo`
  --> $DIR/issue-19100.rs:27:1
   |
27 | Bar if true
   | ^^^
   |
   = help: if you meant to match on a variant, consider making the path in the pattern qualified: `Foo::Bar`

warning[E0170]: pattern binding `Baz` is named the same as one of the variants of the type `Foo`
  --> $DIR/issue-19100.rs:32:1
   |
32 | Baz if false
   | ^^^
   |
   = help: if you meant to match on a variant, consider making the path in the pattern qualified: `Foo::Baz`