rust/tests/ui/privacy/useless-pub.stderr

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

22 lines
627 B
Plaintext
Raw Normal View History

2018-08-08 07:28:26 -05:00
error[E0449]: unnecessary visibility qualifier
2018-12-25 09:56:47 -06:00
--> $DIR/useless-pub.rs:8:5
2018-08-08 07:28:26 -05:00
|
2019-03-09 06:03:44 -06:00
LL | pub fn foo(&self) {}
2018-08-08 07:28:26 -05:00
| ^^^ `pub` not permitted here because it's implied
error[E0449]: unnecessary visibility qualifier
2018-12-25 09:56:47 -06:00
--> $DIR/useless-pub.rs:12:10
2018-08-08 07:28:26 -05:00
|
2019-03-09 06:03:44 -06:00
LL | V1 { pub f: i32 },
2018-08-08 07:28:26 -05:00
| ^^^ `pub` not permitted here because it's implied
error[E0449]: unnecessary visibility qualifier
2018-12-25 09:56:47 -06:00
--> $DIR/useless-pub.rs:13:8
2018-08-08 07:28:26 -05:00
|
2019-03-09 06:03:44 -06:00
LL | V2(pub i32),
2018-08-08 07:28:26 -05:00
| ^^^ `pub` not permitted here because it's implied
error: aborting due to 3 previous errors
For more information about this error, try `rustc --explain E0449`.