diff options
Diffstat (limited to '')
-rw-r--r-- | src/test/ui/associated-consts/associated-const-dead-code.stderr | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/test/ui/associated-consts/associated-const-dead-code.stderr b/src/test/ui/associated-consts/associated-const-dead-code.stderr new file mode 100644 index 000000000..cc701cc4b --- /dev/null +++ b/src/test/ui/associated-consts/associated-const-dead-code.stderr @@ -0,0 +1,14 @@ +error: associated constant `BAR` is never used + --> $DIR/associated-const-dead-code.rs:6:11 + | +LL | const BAR: u32 = 1; + | ^^^ + | +note: the lint level is defined here + --> $DIR/associated-const-dead-code.rs:1:9 + | +LL | #![deny(dead_code)] + | ^^^^^^^^^ + +error: aborting due to previous error + |