2019-09-01 16:30:19 -05:00
|
|
|
warning: unreachable block in `if` expression
|
|
|
|
--> $DIR/if-ret.rs:6:24
|
|
|
|
|
|
|
|
|
LL | fn foo() { if (return) { } }
|
|
|
|
| ^^^
|
|
|
|
|
|
|
|
|
= note: `#[warn(unreachable_code)]` on by default
|
2019-09-18 17:22:13 -05:00
|
|
|
note: any code following this expression is unreachable
|
|
|
|
--> $DIR/if-ret.rs:6:15
|
|
|
|
|
|
|
|
|
LL | fn foo() { if (return) { } }
|
|
|
|
| ^^^^^^^^
|
2019-09-01 16:30:19 -05:00
|
|
|
|