mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
16 lines
399 B
Plaintext
16 lines
399 B
Plaintext
error[E0449]: unnecessary visibility qualifier
|
|
--> $DIR/issue-28433.rs:2:5
|
|
|
|
|
LL | pub Duck,
|
|
| ^^^ `pub` not permitted here because it's implied
|
|
|
|
error[E0449]: unnecessary visibility qualifier
|
|
--> $DIR/issue-28433.rs:5:5
|
|
|
|
|
LL | pub(crate) Dove
|
|
| ^^^^^^^^^^
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
For more information about this error, try `rustc --explain E0449`.
|