rust/tests/ui/reachable/expr_array.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
789 B
Plaintext
Raw Normal View History

error: unreachable expression
2018-12-25 09:56:47 -06:00
--> $DIR/expr_array.rs:9:34
|
2019-03-09 06:03:44 -06:00
LL | let x: [usize; 2] = [return, 22];
| ------ ^^ unreachable expression
| |
| any code following this expression is unreachable
|
2020-01-22 17:57:38 -06:00
note: the lint level is defined here
2018-12-25 09:56:47 -06:00
--> $DIR/expr_array.rs:4:9
|
2018-02-22 18:42:32 -06:00
LL | #![deny(unreachable_code)]
| ^^^^^^^^^^^^^^^^
error: unreachable expression
2018-12-25 09:56:47 -06:00
--> $DIR/expr_array.rs:14:25
|
2019-03-09 06:03:44 -06:00
LL | let x: [usize; 2] = [22, return];
| ^^^^^------^
| | |
| | any code following this expression is unreachable
| unreachable expression
error: aborting due to 2 previous errors