You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
455 B
15 lines
455 B
7 months ago
|
error: unreachable statement
|
||
|
--> $DIR/unreachable.rs:16:9
|
||
|
|
|
||
|
15 | let y = unimplemented!();
|
||
|
| ---------------- any code following this expression is unreachable
|
||
|
16 | let z = y;
|
||
|
| ^^^^^^^^^^ unreachable statement
|
||
|
|
|
||
|
note: the lint level is defined here
|
||
|
--> $DIR/unreachable.rs:1:9
|
||
|
|
|
||
|
1 | #![deny(warnings)]
|
||
|
| ^^^^^^^^
|
||
|
= note: `#[deny(unreachable_code)]` implied by `#[deny(warnings)]`
|