rust/tests/rustdoc-ui/nocapture-fail.stderr

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

19 lines
342 B
Plaintext
Raw Normal View History

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
|
LL ~ fn foo() { SomeStruct {
2021-07-09 04:06:20 -05:00
LL | Input: 123
LL ~ } }
2021-07-09 04:06:20 -05:00
|
error: aborting due to previous error