2022-08-23 04:02:40 -05:00
|
|
|
error: expected one of `!` or `::`, found keyword `enum`
|
|
|
|
--> $DIR/public-instead-of-pub-1.rs:4:8
|
|
|
|
|
|
|
|
|
LL | public enum Test {
|
|
|
|
| ^^^^ expected one of `!` or `::`
|
|
|
|
|
|
|
|
|
help: write `pub` instead of `public` to make the item public
|
|
|
|
|
|
|
|
|
LL | pub enum Test {
|
|
|
|
| ~~~
|
|
|
|
|
2023-11-21 09:44:16 -06:00
|
|
|
error: aborting due to 1 previous error
|
2022-08-23 04:02:40 -05:00
|
|
|
|