2019-01-04 09:19:52 -06:00
|
|
|
error: crate `NonSnakeCase` should have a snake case name
|
2024-03-02 05:49:36 -06:00
|
|
|
--> $DIR/lint-non-snake-case-crate-dylib.rs:3:18
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
|
LL | #![crate_name = "NonSnakeCase"]
|
2019-01-04 09:19:52 -06:00
|
|
|
| ^^^^^^^^^^^^ help: convert the identifier to snake case: `non_snake_case`
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
2020-01-22 17:57:38 -06:00
|
|
|
note: the lint level is defined here
|
2024-03-02 05:49:36 -06:00
|
|
|
--> $DIR/lint-non-snake-case-crate-dylib.rs:5:9
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
|
LL | #![deny(non_snake_case)]
|
|
|
|
| ^^^^^^^^^^^^^^
|
|
|
|
|
2023-11-21 09:44:16 -06:00
|
|
|
error: aborting due to 1 previous error
|
2018-08-08 07:28:26 -05:00
|
|
|
|