rust/src/test/ui/pub-ident-struct.stderr
2018-07-18 10:53:08 +02:00

13 lines
247 B
Plaintext

error: missing `struct` for struct definition
--> $DIR/pub-ident-struct.rs:11:4
|
LL | pub S {
| ^
help: add `struct` here to parse `S` as a public struct
|
LL | pub struct S {
| ^^^^^^
error: aborting due to previous error