2024-07-06 13:14:53 +03:00
|
|
|
error: missing `enum` for enum definition
|
2022-10-26 13:41:57 +02:00
|
|
|
--> $DIR/track4.rs:LL:CC
|
2022-10-24 23:19:48 +02:00
|
|
|
|
|
|
|
|
LL | pub onion {
|
2024-07-06 13:14:53 +03:00
|
|
|
| ^^^^^^^^^
|
2022-10-14 23:16:25 +02:00
|
|
|
-Ztrack-diagnostics: created at compiler/rustc_parse/src/parser/item.rs:LL:CC
|
2022-10-24 23:19:48 +02:00
|
|
|
|
|
2024-07-06 13:14:53 +03:00
|
|
|
help: add `enum` here to parse `onion` as an enum
|
2022-10-24 23:19:48 +02:00
|
|
|
|
|
2024-07-06 13:14:53 +03:00
|
|
|
LL | pub enum onion {
|
|
|
|
| ++++
|
2022-10-24 23:19:48 +02:00
|
|
|
|
2023-11-21 15:44:16 +00:00
|
|
|
error: aborting due to 1 previous error
|
2022-10-24 23:19:48 +02:00
|
|
|
|