]> git.lizzy.rs Git - rust.git/blob - src/test/ui/lint/lint-non-snake-case-modules.stderr
Merge commit '3c7e7dbc1583a0b06df5bd7623dd354a4debd23d' into clippyup
[rust.git] / src / test / ui / lint / lint-non-snake-case-modules.stderr
1 error: module `FooBar` should have a snake case name
2   --> $DIR/lint-non-snake-case-modules.rs:4:5
3    |
4 LL | mod FooBar {
5    |     ^^^^^^ help: convert the identifier to snake case: `foo_bar`
6    |
7 note: the lint level is defined here
8   --> $DIR/lint-non-snake-case-modules.rs:1:9
9    |
10 LL | #![deny(non_snake_case)]
11    |         ^^^^^^^^^^^^^^
12
13 error: aborting due to previous error
14