]> git.lizzy.rs Git - rust.git/blob - src/test/ui/lint/issue-17718-const-naming.stderr
Rollup merge of #87180 - notriddle:notriddle/sidebar-keyboard-mobile, r=GuillaumeGomez
[rust.git] / src / test / ui / lint / issue-17718-const-naming.stderr
1 error: constant is never used: `foo`
2   --> $DIR/issue-17718-const-naming.rs:4:1
3    |
4 LL | const foo: isize = 3;
5    | ^^^^^^^^^^^^^^^^^^^^^
6    |
7 note: the lint level is defined here
8   --> $DIR/issue-17718-const-naming.rs:2:9
9    |
10 LL | #![deny(warnings)]
11    |         ^^^^^^^^
12    = note: `#[deny(dead_code)]` implied by `#[deny(warnings)]`
13
14 error: constant `foo` should have an upper case name
15   --> $DIR/issue-17718-const-naming.rs:4:7
16    |
17 LL | const foo: isize = 3;
18    |       ^^^ help: convert the identifier to upper case (notice the capitalization): `FOO`
19    |
20 note: the lint level is defined here
21   --> $DIR/issue-17718-const-naming.rs:2:9
22    |
23 LL | #![deny(warnings)]
24    |         ^^^^^^^^
25    = note: `#[deny(non_upper_case_globals)]` implied by `#[deny(warnings)]`
26
27 error: aborting due to 2 previous errors
28