1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
|
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
|