blob: 75fb7b28a6ea2e62105e1da149f1965026499122 [file] [log] [blame]
error: missing `struct` for struct definition
--> $DIR/recovered-block.rs:23: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:29:9
|
LL | Foo { text: "".to_string() }
| ^ expected one of `(` or `<` here
error: aborting due to 2 previous errors