summaryrefslogtreecommitdiffstats
path: root/src/test/ui/issues/issue-19100.stderr
blob: 293430691ddcf5a7128a38c55d1c3a12364d5c27 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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`

warning: 2 warnings emitted

For more information about this error, try `rustc --explain E0170`.