rust/tests/ui/reachable/expr_struct.stderr

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

43 lines
1.4 KiB
Plaintext
Raw Normal View History

error: unreachable expression
2018-12-25 09:56:47 -06:00
--> $DIR/expr_struct.rs:14:13
|
2019-03-09 06:03:44 -06:00
LL | let x = Foo { a: 22, b: 33, ..return };
| ^^^^^^^^^^^^^^^^^^^^^^------^^
| | |
| | any code following this expression is unreachable
| unreachable expression
|
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_struct.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_struct.rs:19:33
|
2019-03-09 06:03:44 -06:00
LL | let x = Foo { a: return, b: 33, ..return };
| ------ ^^ unreachable expression
| |
| any code following this expression is unreachable
error: unreachable expression
2018-12-25 09:56:47 -06:00
--> $DIR/expr_struct.rs:24:39
|
2019-03-09 06:03:44 -06:00
LL | let x = Foo { a: 22, b: return, ..return };
| ------ ^^^^^^ unreachable expression
| |
| any code following this expression is unreachable
error: unreachable expression
2018-12-25 09:56:47 -06:00
--> $DIR/expr_struct.rs:29:13
|
2019-03-09 06:03:44 -06:00
LL | let x = Foo { a: 22, b: return };
| ^^^^^^^^^^^^^^^^------^^
| | |
| | any code following this expression is unreachable
| unreachable expression
error: aborting due to 4 previous errors