2022-10-06 18:35:53 +02:00
|
|
|
error: missing `struct` for struct definition
|
2024-07-06 13:14:53 +03:00
|
|
|
--> $DIR/pub-ident-struct-2.rs:4:5
|
2019-04-19 11:04:41 -07:00
|
|
|
|
|
|
|
|
|
LL | pub bar();
|
2024-07-06 13:14:53 +03:00
|
|
|
| ^^^^^^^
|
2022-10-06 18:35:53 +02:00
|
|
|
|
|
2024-07-06 13:14:53 +03:00
|
|
|
help: add `struct` here to parse `bar` as a struct
|
2022-10-06 18:35:53 +02:00
|
|
|
|
|
|
|
|
|
LL | pub struct bar();
|
|
|
|
|
| ++++++
|
2019-04-19 11:04:41 -07:00
|
|
|
|
2023-11-21 15:44:16 +00:00
|
|
|
error: aborting due to 1 previous error
|
2019-04-19 11:04:41 -07:00
|
|
|
|