rust/src/test/ui/associated-const/associated-const-dead-code.stderr

15 lines
326 B
Plaintext
Raw Normal View History

2018-08-08 12:28:26 +00:00
error: associated const is never used: `BAR`
2018-12-25 15:56:47 +00:00
--> $DIR/associated-const-dead-code.rs:6:5
2018-08-08 12:28:26 +00:00
|
LL | const BAR: u32 = 1;
| ^^^^^^^^^^^^^^^^^^^
|
note: lint level defined here
2018-12-25 15:56:47 +00:00
--> $DIR/associated-const-dead-code.rs:1:9
2018-08-08 12:28:26 +00:00
|
LL | #![deny(dead_code)]
| ^^^^^^^^^
error: aborting due to previous error