summary refs log tree commit diff
path: root/src/test/ui/lint/dead-code/unused-struct-variant.stderr
blob: b08402b671b37ddc822c153c11a962f4c985116b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
error: variant `Bar` is never constructed
  --> $DIR/unused-struct-variant.rs:8:5
   |
LL | enum E {
   |      - variant in this enum
LL |     Foo(F),
LL |     Bar(B),
   |     ^^^^^^
   |
note: the lint level is defined here
  --> $DIR/unused-struct-variant.rs:1:9
   |
LL | #![deny(unused)]
   |         ^^^^^^
   = note: `#[deny(dead_code)]` implied by `#[deny(unused)]`

error: aborting due to previous error