2018-07-15 14:11:54 -07:00
|
|
|
error[E0449]: unnecessary visibility qualifier
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/issue-29161.rs:5:9
|
2018-07-15 14:11:54 -07:00
|
|
|
|
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | pub fn default() -> A {
|
2018-07-15 14:11:54 -07:00
|
|
|
| ^^^ `pub` not permitted here because it's implied
|
|
|
|
|
|
|
|
error[E0603]: struct `A` is private
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/issue-29161.rs:13:8
|
2018-07-15 14:11:54 -07:00
|
|
|
|
|
|
|
|
LL | a::A::default();
|
2018-10-27 20:21:34 +03:00
|
|
|
| ^
|
2018-07-15 14:11:54 -07:00
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|
2019-04-17 13:26:38 -04:00
|
|
|
Some errors have detailed explanations: E0449, E0603.
|
2018-07-15 14:11:54 -07:00
|
|
|
For more information about an error, try `rustc --explain E0449`.
|