blob: 3aa15bde9956b57bcb1fbf3a9e2e6239b7537264 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
error: unreachable expression
--> $DIR/expr_cast.rs:9:13
|
LL | let x = {return} as !;
| ^------^^^^^^
| ||
| |any code following this expression is unreachable
| unreachable expression
|
note: the lint level is defined here
--> $DIR/expr_cast.rs:4:9
|
LL | #![deny(unreachable_code)]
| ^^^^^^^^^^^^^^^^
error: aborting due to previous error
|