summaryrefslogtreecommitdiffstats
path: root/src/test/ui/lint/forbid-group-group-1.stderr
blob: fd425e5f74e6fdaaad05baacb273da03f6a628e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
error: variable `A` should have a snake case name
  --> $DIR/forbid-group-group-1.rs:11:9
   |
LL |     let A: ();
   |         ^ help: convert the identifier to snake case: `a`
   |
note: the lint level is defined here
  --> $DIR/forbid-group-group-1.rs:4:11
   |
LL | #![forbid(nonstandard_style)]
   |           ^^^^^^^^^^^^^^^^^
   = note: `#[forbid(non_snake_case)]` implied by `#[forbid(nonstandard_style)]`

error: aborting due to previous error