]> git.proxmox.com Git - rustc.git/blob - tests/ui/lint/command-line-lint-group-forbid.stderr
New upstream version 1.74.1+dfsg1
[rustc.git] / tests / ui / lint / command-line-lint-group-forbid.stderr
1 error: variable `_InappropriateCamelCasing` should have a snake case name
2 --> $DIR/command-line-lint-group-forbid.rs:4:9
3 |
4 LL | let _InappropriateCamelCasing = true;
5 | ^^^^^^^^^^^^^^^^^^^^^^^^^ help: convert the identifier to snake case: `_inappropriate_camel_casing`
6 |
7 = note: `-F non-snake-case` implied by `-F bad-style`
8 = help: to override `-F bad-style` add `#[allow(non_snake_case)]`
9
10 error: aborting due to previous error
11