]> git.lizzy.rs Git - rust.git/blob - tests/ui/lint/forbid-group-group-1.stderr
Rollup merge of #106935 - TaKO8Ki:fix-104440, r=cjgillot
[rust.git] / tests / ui / lint / forbid-group-group-1.stderr
1 error: variable `A` should have a snake case name
2   --> $DIR/forbid-group-group-1.rs:11:9
3    |
4 LL |     let A: ();
5    |         ^ help: convert the identifier to snake case: `a`
6    |
7 note: the lint level is defined here
8   --> $DIR/forbid-group-group-1.rs:4:11
9    |
10 LL | #![forbid(nonstandard_style)]
11    |           ^^^^^^^^^^^^^^^^^
12    = note: `#[forbid(non_snake_case)]` implied by `#[forbid(nonstandard_style)]`
13
14 error: aborting due to previous error
15