summaryrefslogtreecommitdiffstats
path: root/tests/ui/pattern/usefulness/struct-pattern-match-useless.stderr
blob: cc29c42e4d68903ff46c10edd036536a434ae47c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
error: unreachable pattern
  --> $DIR/struct-pattern-match-useless.rs:12:9
   |
LL |         Foo { x: _x, y: _y } => (),
   |         -------------------- matches any value
LL |         Foo { .. } => ()
   |         ^^^^^^^^^^ unreachable pattern
   |
note: the lint level is defined here
  --> $DIR/struct-pattern-match-useless.rs:1:9
   |
LL | #![deny(unreachable_patterns)]
   |         ^^^^^^^^^^^^^^^^^^^^

error: aborting due to 1 previous error