mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-02 07:22:42 +00:00
d0111cb57a
We're trying to test lint behavior, not per-target crate-type support.
15 lines
452 B
Plaintext
15 lines
452 B
Plaintext
error: crate `NonSnakeCase` should have a snake case name
|
|
--> $DIR/lint-non-snake-case-crate-staticlib.rs:3:18
|
|
|
|
|
LL | #![crate_name = "NonSnakeCase"]
|
|
| ^^^^^^^^^^^^ help: convert the identifier to snake case: `non_snake_case`
|
|
|
|
|
note: the lint level is defined here
|
|
--> $DIR/lint-non-snake-case-crate-staticlib.rs:5:9
|
|
|
|
|
LL | #![deny(non_snake_case)]
|
|
| ^^^^^^^^^^^^^^
|
|
|
|
error: aborting due to 1 previous error
|
|
|