2019-01-04 10:19:52 -05:00
|
|
|
error: variable `X` should have a snake case name
|
2021-03-20 02:52:07 +03:00
|
|
|
--> $DIR/expr_attr_paren_order.rs:17:17
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | let X = 0;
|
2019-10-13 21:48:39 -07:00
|
|
|
| ^ help: convert the identifier to snake case (notice the capitalization): `x`
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
2020-01-22 23:57:38 +00:00
|
|
|
note: the lint level is defined here
|
2021-03-20 02:52:07 +03:00
|
|
|
--> $DIR/expr_attr_paren_order.rs:15:37
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
2021-03-20 02:52:07 +03:00
|
|
|
LL | #[allow(non_snake_case)] #[deny(non_snake_case)] (
|
|
|
|
| ^^^^^^^^^^^^^^
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|