mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
26 lines
789 B
Plaintext
26 lines
789 B
Plaintext
error: unreachable expression
|
|
--> $DIR/expr_array.rs:9:34
|
|
|
|
|
LL | let x: [usize; 2] = [return, 22];
|
|
| ------ ^^ unreachable expression
|
|
| |
|
|
| any code following this expression is unreachable
|
|
|
|
|
note: the lint level is defined here
|
|
--> $DIR/expr_array.rs:4:9
|
|
|
|
|
LL | #![deny(unreachable_code)]
|
|
| ^^^^^^^^^^^^^^^^
|
|
|
|
error: unreachable expression
|
|
--> $DIR/expr_array.rs:14:25
|
|
|
|
|
LL | let x: [usize; 2] = [22, return];
|
|
| ^^^^^------^
|
|
| | |
|
|
| | any code following this expression is unreachable
|
|
| unreachable expression
|
|
|
|
error: aborting due to 2 previous errors
|
|
|