1
Fork 0
rust/src/test/ui/lint/command-line-lint-group-deny.stderr

11 lines
418 B
Text
Raw Normal View History

error: variable `_InappropriateCamelCasing` should have a snake case name
2018-12-25 08:56:47 -07:00
--> $DIR/command-line-lint-group-deny.rs:4:9
|
2018-02-23 03:42:32 +03:00
LL | let _InappropriateCamelCasing = true; //~ ERROR should have a snake
| ^^^^^^^^^^^^^^^^^^^^^^^^^ help: convert the identifier to snake case: `_inappropriate_camel_casing`
|
= note: `-D non-snake-case` implied by `-D bad-style`
error: aborting due to previous error