1
Fork 0
rust/src/test/ui/error-codes/E0001.stderr

15 lines
307 B
Text
Raw Normal View History

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