summary refs log tree commit diff
path: root/src/test/ui/expr_attr_paren_order.stderr
blob: 8155514191ce35511f81bdae0a6f9a0f5602226f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
error: variable `X` should have a snake case name
  --> $DIR/expr_attr_paren_order.rs:19:17
   |
LL |             let X = 0; //~ ERROR snake case name
   |                 ^ help: convert the identifier to snake case: `x`
   |
note: lint level defined here
  --> $DIR/expr_attr_paren_order.rs:17:17
   |
LL |         #![deny(non_snake_case)]
   |                 ^^^^^^^^^^^^^^

error: aborting due to previous error