rust/tests/ui/lint/lint-non-snake-case-crate-proc-macro.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
454 B
Plaintext
Raw Normal View History

error: crate `NonSnakeCase` should have a snake case name
--> $DIR/lint-non-snake-case-crate-proc-macro.rs:3:18
2018-08-08 12:28:26 +00:00
|
LL | #![crate_name = "NonSnakeCase"]
| ^^^^^^^^^^^^ help: convert the identifier to snake case: `non_snake_case`
2018-08-08 12:28:26 +00:00
|
2020-01-22 23:57:38 +00:00
note: the lint level is defined here
--> $DIR/lint-non-snake-case-crate-proc-macro.rs:5:9
2018-08-08 12:28:26 +00:00
|
LL | #![deny(non_snake_case)]
| ^^^^^^^^^^^^^^
error: aborting due to 1 previous error
2018-08-08 12:28:26 +00:00