rust/src/test/ui/error-codes/E0001.stderr

15 lines
305 B
Plaintext
Raw Normal View History

2018-02-08 03:35:35 +00:00
error: unreachable pattern
2018-12-25 15:56:47 +00:00
--> $DIR/E0001.rs:8:9
2018-02-08 03:35:35 +00:00
|
2018-02-23 00:42:32 +00:00
LL | _ => {/* ... */} //~ ERROR unreachable pattern
2018-02-08 03:35:35 +00:00
| ^
|
note: lint level defined here
2018-12-25 15:56:47 +00:00
--> $DIR/E0001.rs:1:9
2018-02-08 03:35:35 +00:00
|
2018-02-23 00:42:32 +00:00
LL | #![deny(unreachable_patterns)]
2018-02-08 03:35:35 +00:00
| ^^^^^^^^^^^^^^^^^^^^
error: aborting due to previous error