]> git.lizzy.rs Git - rust.git/blob - tests/ui/suggestions/issue-88730.stderr
Rollup merge of #106670 - albertlarsan68:check-docs-in-pr-ci, r=Mark-Simulacrum
[rust.git] / tests / ui / suggestions / issue-88730.stderr
1 error[E0170]: pattern binding `C` is named the same as one of the variants of the type `Foo`
2   --> $DIR/issue-88730.rs:12:8
3    |
4 LL | fn foo(C: Foo) {}
5    |        ^
6    |
7 note: the lint level is defined here
8   --> $DIR/issue-88730.rs:2:9
9    |
10 LL | #![deny(bindings_with_variant_name)]
11    |         ^^^^^^^^^^^^^^^^^^^^^^^^^^
12
13 error[E0170]: pattern binding `C` is named the same as one of the variants of the type `Foo`
14   --> $DIR/issue-88730.rs:15:9
15    |
16 LL |     let C = Foo::D;
17    |         ^
18
19 error: aborting due to 2 previous errors
20
21 For more information about this error, try `rustc --explain E0170`.