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 08:56:47 -07:00
--> $DIR/expr_struct.rs:14:13
|
2019-03-09 15:03:44 +03:00
LL | let x = Foo { a: 22, b: 33, ..return };
| ^^^^^^^^^^^^^^^^^^^^^^------^^
| | |
| | any code following this expression is unreachable
| unreachable expression
|
2020-01-22 23:57:38 +00:00
note: the lint level is defined here
2018-12-25 08:56:47 -07:00
--> $DIR/expr_struct.rs:4:9
|
2018-02-23 03:42:32 +03:00
LL | #![deny(unreachable_code)]
| ^^^^^^^^^^^^^^^^
error: unreachable expression
2018-12-25 08:56:47 -07:00
--> $DIR/expr_struct.rs:19:33
|
2019-03-09 15:03:44 +03: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 08:56:47 -07:00
--> $DIR/expr_struct.rs:24:39
|
2019-03-09 15:03:44 +03: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 08:56:47 -07:00
--> $DIR/expr_struct.rs:29:13
|
2019-03-09 15:03:44 +03: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