]> git.lizzy.rs Git - rust.git/blob - tests/ui/pattern/issue-67776-match-same-name-enum-variant-refs.stderr
Merge commit '7f27e2e74ef957baa382dc05cf08df6368165c74' into clippyup
[rust.git] / tests / ui / pattern / issue-67776-match-same-name-enum-variant-refs.stderr
1 warning[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:17:9
3    |
4 LL |         Bar => {},
5    |         ^^^ help: to match on the variant, qualify the path: `Foo::Bar`
6    |
7    = note: `#[warn(bindings_with_variant_name)]` on by default
8
9 warning[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:19:9
11    |
12 LL |         Baz => {},
13    |         ^^^ help: to match on the variant, qualify the path: `Foo::Baz`
14
15 warning[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:26:9
17    |
18 LL |         Bar => {},
19    |         ^^^ help: to match on the variant, qualify the path: `Foo::Bar`
20
21 warning[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:28:9
23    |
24 LL |         Baz => {},
25    |         ^^^ help: to match on the variant, qualify the path: `Foo::Baz`
26
27 warning[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:35:9
29    |
30 LL |         Bar => {},
31    |         ^^^ help: to match on the variant, qualify the path: `Foo::Bar`
32
33 warning[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:37:9
35    |
36 LL |         Baz => {},
37    |         ^^^ help: to match on the variant, qualify the path: `Foo::Baz`
38
39 warning: 6 warnings emitted
40
41 For more information about this error, try `rustc --explain E0170`.