blob: 7834750630bf3fea7af39dc52931c4b0bac2a081 [file] [log] [blame]
error: missing `struct` for struct definition
--> $DIR/recovered-block.rs:13:8
|
LL | pub Foo { text }
| ^
help: add `struct` here to parse `Foo` as a public struct
|
LL | pub struct Foo { text }
| ^^^^^^
error: expected one of `(` or `<`, found `{`
--> $DIR/recovered-block.rs:19:9
|
LL | Foo { text: "".to_string() }
| ^ expected one of `(` or `<` here
error: aborting due to 2 previous errors