summary refs log tree commit diff
path: root/src/test/ui/error-codes/E0001.stderr
blob: af67a438f52fa1c89d7d0b00a6abc99fd9f1aa61 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
error: unreachable pattern
  --> $DIR/E0001.rs:18:9
   |
LL |         _ => {/* ... */} //~ ERROR unreachable pattern
   |         ^
   |
note: lint level defined here
  --> $DIR/E0001.rs:11:9
   |
LL | #![deny(unreachable_patterns)]
   |         ^^^^^^^^^^^^^^^^^^^^

error: aborting due to previous error