2023-04-04 03:28:55 +00:00
|
|
|
error[E0449]: visibility qualifiers are not permitted here
|
2019-05-31 20:50:04 +00:00
|
|
|
--> $DIR/issue-28433.rs:2:5
|
2018-07-15 21:11:54 +00:00
|
|
|
|
|
2019-03-08 22:35:38 +00:00
|
|
|
LL | pub Duck,
|
2024-04-12 03:40:11 +00:00
|
|
|
| ^^^ help: remove the qualifier
|
2023-04-04 03:28:55 +00:00
|
|
|
|
|
|
|
|
= note: enum variants and their fields always share the visibility of the enum they are in
|
2018-07-15 21:11:54 +00:00
|
|
|
|
2023-04-04 03:28:55 +00:00
|
|
|
error[E0449]: visibility qualifiers are not permitted here
|
2019-05-31 20:50:04 +00:00
|
|
|
--> $DIR/issue-28433.rs:5:5
|
2019-03-09 23:14:22 +00:00
|
|
|
|
|
|
|
|
LL | pub(crate) Dove
|
2024-04-12 03:40:11 +00:00
|
|
|
| ^^^^^^^^^^ help: remove the qualifier
|
2023-04-04 03:28:55 +00:00
|
|
|
|
|
|
|
|
= note: enum variants and their fields always share the visibility of the enum they are in
|
2019-03-09 23:14:22 +00:00
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
2018-07-15 21:11:54 +00:00
|
|
|
|
2019-11-07 10:26:36 +00:00
|
|
|
For more information about this error, try `rustc --explain E0449`.
|