summaryrefslogtreecommitdiff
path: root/tests/ui/lint/dead-code/unused-assoc-const.stderr
blob: 78296d706638b36316c43261294952e47ad1a60a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
error: associated constant `UNUSED_CONST` is never used
  --> $DIR/unused-assoc-const.rs:4:11
   |
LL | trait Trait {
   |       ----- associated constant in this trait
LL |     const UNUSED_CONST: i32;
   |           ^^^^^^^^^^^^
   |
note: the lint level is defined here
  --> $DIR/unused-assoc-const.rs:1:9
   |
LL | #![deny(dead_code)]
   |         ^^^^^^^^^

error: aborting due to 1 previous error