rust/tests/ui/privacy/issue-29161.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
588 B
Plaintext
Raw Normal View History

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