]> git.lizzy.rs Git - rust.git/blob - src/test/ui/lint/forbid-group-group-1.stderr
introduce future-compatibility warning for forbidden lint groups
[rust.git] / src / test / 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