rust/src/test/ui/issues/issue-17718-const-naming.stderr

29 lines
742 B
Plaintext
Raw Normal View History

2018-07-15 21:11:54 +00:00
error: constant item is never used: `foo`
2018-12-25 15:56:47 +00:00
--> $DIR/issue-17718-const-naming.rs:4:1
2018-07-15 21:11:54 +00:00
|
LL | const foo: isize = 3;
| ^^^^^^^^^^^^^^^^^^^^^
|
note: lint level defined here
2018-12-25 15:56:47 +00:00
--> $DIR/issue-17718-const-naming.rs:2:8
2018-07-15 21:11:54 +00:00
|
LL | #[deny(warnings)]
| ^^^^^^^^
= note: #[deny(dead_code)] implied by #[deny(warnings)]
error: constant `foo` should have an upper case name such as `FOO`
2018-12-25 15:56:47 +00:00
--> $DIR/issue-17718-const-naming.rs:4:1
2018-07-15 21:11:54 +00:00
|
LL | const foo: isize = 3;
| ^^^^^^^^^^^^^^^^^^^^^
|
note: lint level defined here
2018-12-25 15:56:47 +00:00
--> $DIR/issue-17718-const-naming.rs:2:8
2018-07-15 21:11:54 +00:00
|
LL | #[deny(warnings)]
| ^^^^^^^^
= note: #[deny(non_upper_case_globals)] implied by #[deny(warnings)]
error: aborting due to 2 previous errors