mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
41e8d152dc
Co-authored-by: Adrian <adrian.iosdev@gmail.com>
18 lines
494 B
Plaintext
18 lines
494 B
Plaintext
error: unreachable expression
|
|
--> $DIR/expr_repeat.rs:9:25
|
|
|
|
|
LL | let x: [usize; 2] = [return; 2];
|
|
| ^------^^^^
|
|
| ||
|
|
| |any code following this expression is unreachable
|
|
| unreachable expression
|
|
|
|
|
note: the lint level is defined here
|
|
--> $DIR/expr_repeat.rs:4:9
|
|
|
|
|
LL | #![deny(unreachable_code)]
|
|
| ^^^^^^^^^^^^^^^^
|
|
|
|
error: aborting due to 1 previous error
|
|
|