]> git.lizzy.rs Git - rust.git/blob - tests/ui/lint/expr_attr_paren_order.stderr
Auto merge of #106884 - clubby789:fieldless-enum-debug, r=michaelwoerister
[rust.git] / tests / ui / lint / expr_attr_paren_order.stderr
1 error: variable `X` should have a snake case name
2   --> $DIR/expr_attr_paren_order.rs:17:17
3    |
4 LL |             let X = 0;
5    |                 ^ help: convert the identifier to snake case (notice the capitalization): `x`
6    |
7 note: the lint level is defined here
8   --> $DIR/expr_attr_paren_order.rs:15:37
9    |
10 LL |     #[allow(non_snake_case)] #[deny(non_snake_case)] (
11    |                                     ^^^^^^^^^^^^^^
12
13 error: aborting due to previous error
14