rust/src/test/ui/expr_attr_paren_order.stderr

15 lines
392 B
Plaintext
Raw Normal View History

error: variable `X` should have a snake case name
2018-12-25 15:56:47 +00:00
--> $DIR/expr_attr_paren_order.rs:19:17
2018-08-08 12:28:26 +00:00
|
2019-03-09 12:03:44 +00:00
LL | let X = 0;
| ^ help: convert the identifier to snake case: `x`
2018-08-08 12:28:26 +00:00
|
note: lint level defined here
2018-12-25 15:56:47 +00:00
--> $DIR/expr_attr_paren_order.rs:17:17
2018-08-08 12:28:26 +00:00
|
LL | #![deny(non_snake_case)]
| ^^^^^^^^^^^^^^
error: aborting due to previous error