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