summaryrefslogtreecommitdiffstats
path: root/tests/ui/lint/lint-non-snake-case-crate.stderr
blob: 1136b707d595b574d05ac8cc8b2b8907ef63464d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
error: crate `NonSnakeCase` should have a snake case name
  --> $DIR/lint-non-snake-case-crate.rs:1: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.rs:3:9
   |
LL | #![deny(non_snake_case)]
   |         ^^^^^^^^^^^^^^

error: aborting due to 1 previous error