2019-01-04 10:19:52 -05:00
|
|
|
warning: variable `_InappropriateCamelCasing` should have a snake case name
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/command-line-lint-group-warn.rs:5:9
|
2017-01-05 18:55:43 -08:00
|
|
|
|
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | let _InappropriateCamelCasing = true;
|
2019-01-04 10:19:52 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^ help: convert the identifier to snake case: `_inappropriate_camel_casing`
|
2017-01-05 18:55:43 -08:00
|
|
|
|
|
2017-01-05 20:01:22 -08:00
|
|
|
= note: `-W non-snake-case` implied by `-W bad-style`
|
2023-07-25 19:40:04 +02:00
|
|
|
= help: to override `-W bad-style` add `#[allow(non_snake_case)]`
|
2017-01-05 18:55:43 -08:00
|
|
|
|
2020-03-11 16:30:09 +01:00
|
|
|
warning: 1 warning emitted
|
|
|
|
|