mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
26 lines
671 B
Plaintext
26 lines
671 B
Plaintext
error: unreachable expression
|
|
--> $DIR/unreachable-in-call.rs:14:10
|
|
|
|
|
LL | call(diverge(),
|
|
| --------- any code following this expression is unreachable
|
|
LL | get_u8());
|
|
| ^^^^^^^^ unreachable expression
|
|
|
|
|
note: the lint level is defined here
|
|
--> $DIR/unreachable-in-call.rs:2:9
|
|
|
|
|
LL | #![deny(unreachable_code)]
|
|
| ^^^^^^^^^^^^^^^^
|
|
|
|
error: unreachable call
|
|
--> $DIR/unreachable-in-call.rs:17:5
|
|
|
|
|
LL | call(
|
|
| ^^^^ unreachable call
|
|
LL | get_u8(),
|
|
LL | diverge());
|
|
| --------- any code following this expression is unreachable
|
|
|
|
error: aborting due to 2 previous errors
|
|
|