about summary refs log tree commit diff
path: root/tests/ui/pattern/usefulness/issue-30240-b.stderr
blob: 4805083c12997256ad407c2d8d5138bedc108399 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
error: unreachable pattern
  --> $DIR/issue-30240-b.rs:12:9
   |
LL |         "hello" => {}
   |         ------- matches all the relevant values
LL |         "hello" => {}
   |         ^^^^^^^ no value can reach this
   |
note: the lint level is defined here
  --> $DIR/issue-30240-b.rs:1:9
   |
LL | #![deny(unreachable_patterns)]
   |         ^^^^^^^^^^^^^^^^^^^^

error: aborting due to 1 previous error