mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 15:23:46 +00:00
16 lines
413 B
Plaintext
16 lines
413 B
Plaintext
error: unreachable pattern
|
|
--> $DIR/unreachable-loop-patterns.rs:18:9
|
|
|
|
|
LL | for _ in unimplemented!() as Void {}
|
|
| ^
|
|
|
|
|
= note: this pattern matches no values because `Void` is uninhabited
|
|
note: the lint level is defined here
|
|
--> $DIR/unreachable-loop-patterns.rs:5:9
|
|
|
|
|
LL | #![deny(unreachable_patterns)]
|
|
| ^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: aborting due to 1 previous error
|
|
|