blob: e925a195fb1c468e99a8b1e0b7fe181e37af05b9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
warning: function `FUNCTION` should have a snake case name
--> $DIR/lint-group-allow-warnings.rs:9:8
|
LL | pub fn FUNCTION() {}
| ^^^^^^^^ help: convert the identifier to snake case: `function`
|
= note: `--force-warn non-snake-case` implied by `--force-warn nonstandard-style`
= help: to override `--force-warn nonstandard-style` add `#[allow(non_snake_case)]`
warning: 1 warning emitted
|