blob: 78ac76a6137f4dbc5c96f354754abab88caf5d67 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
error: unreachable expression
--> $DIR/expr_array.rs:19:34
|
LL | let x: [usize; 2] = [return, 22]; //~ ERROR unreachable
| ^^
|
note: lint level defined here
--> $DIR/expr_array.rs:14:9
|
LL | #![deny(unreachable_code)]
| ^^^^^^^^^^^^^^^^
error: unreachable expression
--> $DIR/expr_array.rs:24:25
|
LL | let x: [usize; 2] = [22, return]; //~ ERROR unreachable
| ^^^^^^^^^^^^
error: aborting due to 2 previous errors
|