]> git.lizzy.rs Git - rust.git/blob - tests/ui/pattern/issue-67776-match-same-name-enum-variant-refs.stderr
Rollup merge of #106749 - glandium:dwarf, r=Mark-Simulacrum
[rust.git] / tests / ui / pattern / issue-67776-match-same-name-enum-variant-refs.stderr
1 error[E0170]: pattern binding `Bar` is named the same as one of the variants of the type `Foo`
2   --> $DIR/issue-67776-match-same-name-enum-variant-refs.rs:15:9
3    |
4 LL |         Bar => {},
5    |         ^^^ help: to match on the variant, qualify the path: `Foo::Bar`
6    |
7    = note: `#[deny(bindings_with_variant_name)]` on by default
8
9 error[E0170]: pattern binding `Baz` is named the same as one of the variants of the type `Foo`
10   --> $DIR/issue-67776-match-same-name-enum-variant-refs.rs:17:9
11    |
12 LL |         Baz => {},
13    |         ^^^ help: to match on the variant, qualify the path: `Foo::Baz`
14
15 error[E0170]: pattern binding `Bar` is named the same as one of the variants of the type `Foo`
16   --> $DIR/issue-67776-match-same-name-enum-variant-refs.rs:24:9
17    |
18 LL |         Bar => {},
19    |         ^^^ help: to match on the variant, qualify the path: `Foo::Bar`
20
21 error[E0170]: pattern binding `Baz` is named the same as one of the variants of the type `Foo`
22   --> $DIR/issue-67776-match-same-name-enum-variant-refs.rs:26:9
23    |
24 LL |         Baz => {},
25    |         ^^^ help: to match on the variant, qualify the path: `Foo::Baz`
26
27 error[E0170]: pattern binding `Bar` is named the same as one of the variants of the type `Foo`
28   --> $DIR/issue-67776-match-same-name-enum-variant-refs.rs:33:9
29    |
30 LL |         Bar => {},
31    |         ^^^ help: to match on the variant, qualify the path: `Foo::Bar`
32
33 error[E0170]: pattern binding `Baz` is named the same as one of the variants of the type `Foo`
34   --> $DIR/issue-67776-match-same-name-enum-variant-refs.rs:35:9
35    |
36 LL |         Baz => {},
37    |         ^^^ help: to match on the variant, qualify the path: `Foo::Baz`
38
39 error: aborting due to 6 previous errors
40
41 For more information about this error, try `rustc --explain E0170`.