2022-10-06 11:35:53 -05:00
|
|
|
error: missing `struct` for struct definition
|
2024-07-06 05:14:53 -05:00
|
|
|
--> $DIR/pub-ident-struct-3.rs:1:1
|
2017-11-21 10:03:02 -06:00
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | pub S();
|
2024-07-06 05:14:53 -05:00
|
|
|
| ^^^^^
|
2022-10-06 11:35:53 -05:00
|
|
|
|
|
2024-07-06 05:14:53 -05:00
|
|
|
help: add `struct` here to parse `S` as a struct
|
2022-10-06 11:35:53 -05:00
|
|
|
|
|
|
|
|
LL | pub struct S();
|
|
|
|
| ++++++
|
2017-11-21 10:03:02 -06:00
|
|
|
|
2023-11-21 09:44:16 -06:00
|
|
|
error: aborting due to 1 previous error
|
2017-11-21 10:03:02 -06:00
|
|
|
|