]> git.lizzy.rs Git - rust.git/blob - tests/ui/suggestions/issue-88730.stderr
Rollup merge of #106854 - steffahn:drop_linear_arc_rebased, 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:11:8
3    |
4 LL | fn foo(C: Foo) {}
5    |        ^
6    |
7    = note: `#[deny(bindings_with_variant_name)]` on by default
8
9 error[E0170]: pattern binding `C` is named the same as one of the variants of the type `Foo`
10   --> $DIR/issue-88730.rs:14:9
11    |
12 LL |     let C = Foo::D;
13    |         ^
14
15 error: aborting due to 2 previous errors
16
17 For more information about this error, try `rustc --explain E0170`.