2020-08-12 22:39:15 +00:00
|
|
|
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
|
|
|
|
|
|
2021-06-22 02:07:19 +00:00
|
|
|
LL ~ fn foo() -> Foo { SomeStruct {
|
2020-08-12 22:39:15 +00:00
|
|
|
LL | val: (),
|
2021-06-22 02:07:19 +00:00
|
|
|
LL ~ } }
|
2020-08-12 22:39:15 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
error: struct literal body without path
|
|
|
|
--> $DIR/bare-struct-body.rs:12:13
|
|
|
|
|
|
|
|
|
LL | let x = {
|
|
|
|
| _____________^
|
|
|
|
LL | | val: (),
|
|
|
|
LL | | };
|
|
|
|
| |_____^
|
|
|
|
|
|
|
|
|
help: you might have forgotten to add the struct literal inside the block
|
|
|
|
|
|
2021-06-22 02:07:19 +00:00
|
|
|
LL ~ let x = { SomeStruct {
|
2020-08-12 22:39:15 +00:00
|
|
|
LL | val: (),
|
2021-06-22 02:07:19 +00:00
|
|
|
LL ~ } };
|
2020-08-12 22:39:15 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
error[E0308]: mismatched types
|
|
|
|
--> $DIR/bare-struct-body.rs:11:14
|
|
|
|
|
|
|
|
|
LL | x.val == 42;
|
2022-12-02 23:56:37 +00:00
|
|
|
| ----- ^^ expected `()`, found integer
|
|
|
|
| |
|
|
|
|
| expected because this is `()`
|
2020-08-12 22:39:15 +00:00
|
|
|
|
|
|
|
error: aborting due to 3 previous errors
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0308`.
|