rust/tests/ui/parser/bare-struct-body.stderr
Usman Akinyemi 54fc546f20 Recover from struct literals with placeholder or empty path
Based on earlier work by León Orell Valerian Liehr.

Co-authored-by: León Orell Valerian Liehr <me@fmease.dev>
Signed-off-by: Usman Akinyemi <uniqueusman@archlinux>
2026-01-26 04:09:28 +05:30

41 lines
938 B
Text

error: struct literal body without path
--> $DIR/bare-struct-body.rs:5:17
|
LL | fn foo() -> Foo {
| _________________^
LL | | val: (),
LL | | }
| |_^
|
help: you might have forgotten to add the struct literal inside the block
|
LL ~ fn foo() -> Foo { SomeStruct {
LL | val: (),
LL ~ } }
|
error: struct literal body without path
--> $DIR/bare-struct-body.rs:12:13
|
LL | let x = {
| _____________^
LL | | val: (),
LL | | };
| |_____^ struct name missing for struct literal
|
help: add the correct type
|
LL | let x = /* Type */ {
| ++++++++++
error[E0308]: mismatched types
--> $DIR/bare-struct-body.rs:11:14
|
LL | x.val == 42;
| ----- ^^ expected `()`, found integer
| |
| expected because this is `()`
error: aborting due to 3 previous errors
For more information about this error, try `rustc --explain E0308`.