mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
20 lines
575 B
Plaintext
20 lines
575 B
Plaintext
error[E0449]: visibility qualifiers are not permitted here
|
|
--> $DIR/issue-28433.rs:2:5
|
|
|
|
|
LL | pub Duck,
|
|
| ^^^
|
|
|
|
|
= note: enum variants and their fields always share the visibility of the enum they are in
|
|
|
|
error[E0449]: visibility qualifiers are not permitted here
|
|
--> $DIR/issue-28433.rs:5:5
|
|
|
|
|
LL | pub(crate) Dove
|
|
| ^^^^^^^^^^
|
|
|
|
|
= note: enum variants and their fields always share the visibility of the enum they are in
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
For more information about this error, try `rustc --explain E0449`.
|