2019-01-04 20:00:15 +00:00
|
|
|
error: associated constant `not_upper` should have an upper case name
|
|
|
|
--> $DIR/lint-non-uppercase-associated-const.rs:7:11
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
|
|
|
LL | const not_upper: bool = true;
|
2019-01-04 20:00:15 +00:00
|
|
|
| ^^^^^^^^^ help: convert the identifier to upper case: `NOT_UPPER`
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
2020-01-22 23:57:38 +00:00
|
|
|
note: the lint level is defined here
|
2019-01-04 20:00:15 +00:00
|
|
|
--> $DIR/lint-non-uppercase-associated-const.rs:1:9
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
|
|
|
LL | #![deny(non_upper_case_globals)]
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|