rust/src/test/ui/lint/lint-non-snake-case-modules.stderr
Vadim Petrochenkov fa72a81bea Update tests
2019-03-11 23:10:26 +03:00

15 lines
376 B
Plaintext

error: module `FooBar` should have a snake case name
--> $DIR/lint-non-snake-case-modules.rs:4:5
|
LL | mod FooBar {
| ^^^^^^ help: convert the identifier to snake case: `foo_bar`
|
note: lint level defined here
--> $DIR/lint-non-snake-case-modules.rs:1:9
|
LL | #![deny(non_snake_case)]
| ^^^^^^^^^^^^^^
error: aborting due to previous error