2021-07-09 04:06:20 -05:00
|
|
|
error: struct literal body without path
|
|
|
|
--> $DIR/nocapture-fail.rs:8:10
|
|
|
|
|
|
|
|
|
LL | fn foo() {
|
|
|
|
| __________^
|
|
|
|
LL | | Input: 123
|
|
|
|
LL | | }
|
|
|
|
| |_^
|
|
|
|
|
|
|
|
|
help: you might have forgotten to add the struct literal inside the block
|
|
|
|
|
|
2021-06-21 21:07:19 -05:00
|
|
|
LL ~ fn foo() { SomeStruct {
|
2021-07-09 04:06:20 -05:00
|
|
|
LL | Input: 123
|
2021-06-21 21:07:19 -05:00
|
|
|
LL ~ } }
|
2021-07-09 04:06:20 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|