rust/tests/ui/privacy/privacy-sanity.stderr

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

148 lines
4.3 KiB
Plaintext
Raw Normal View History

error[E0449]: visibility qualifiers are not permitted here
2018-12-25 15:56:47 +00:00
--> $DIR/privacy-sanity.rs:13:1
2018-08-08 12:28:26 +00:00
|
2019-03-09 12:03:44 +00:00
LL | pub impl Tr for S {
| ^^^ help: remove the qualifier
|
= note: trait items always share the visibility of their trait
2018-08-08 12:28:26 +00:00
error[E0449]: visibility qualifiers are not permitted here
2018-12-25 15:56:47 +00:00
--> $DIR/privacy-sanity.rs:14:5
2018-08-08 12:28:26 +00:00
|
2019-03-09 12:03:44 +00:00
LL | pub fn f() {}
| ^^^ help: remove the qualifier
|
= note: trait items always share the visibility of their trait
2018-08-08 12:28:26 +00:00
error[E0449]: visibility qualifiers are not permitted here
2018-12-25 15:56:47 +00:00
--> $DIR/privacy-sanity.rs:15:5
2018-08-08 12:28:26 +00:00
|
2019-03-09 12:03:44 +00:00
LL | pub const C: u8 = 0;
| ^^^ help: remove the qualifier
|
= note: trait items always share the visibility of their trait
2018-08-08 12:28:26 +00:00
error[E0449]: visibility qualifiers are not permitted here
2018-12-25 15:56:47 +00:00
--> $DIR/privacy-sanity.rs:16:5
2018-08-08 12:28:26 +00:00
|
2019-03-09 12:03:44 +00:00
LL | pub type T = u8;
| ^^^ help: remove the qualifier
|
= note: trait items always share the visibility of their trait
2018-08-08 12:28:26 +00:00
error[E0449]: visibility qualifiers are not permitted here
2018-12-25 15:56:47 +00:00
--> $DIR/privacy-sanity.rs:18:1
2018-08-08 12:28:26 +00:00
|
2019-03-09 12:03:44 +00:00
LL | pub impl S {
| ^^^ help: remove the qualifier
2018-08-08 12:28:26 +00:00
|
= note: place qualifiers on individual impl items instead
error[E0449]: visibility qualifiers are not permitted here
2018-12-25 15:56:47 +00:00
--> $DIR/privacy-sanity.rs:23:1
2018-08-08 12:28:26 +00:00
|
2019-03-09 12:03:44 +00:00
LL | pub extern "C" {
| ^^^ help: remove the qualifier
2018-08-08 12:28:26 +00:00
|
= note: place qualifiers on individual foreign items instead
error[E0449]: visibility qualifiers are not permitted here
2018-12-25 15:56:47 +00:00
--> $DIR/privacy-sanity.rs:39:5
2018-08-08 12:28:26 +00:00
|
2019-03-09 12:03:44 +00:00
LL | pub impl Tr for S {
| ^^^ help: remove the qualifier
|
= note: trait items always share the visibility of their trait
2018-08-08 12:28:26 +00:00
error[E0449]: visibility qualifiers are not permitted here
2018-12-25 15:56:47 +00:00
--> $DIR/privacy-sanity.rs:40:9
2018-08-08 12:28:26 +00:00
|
2019-03-09 12:03:44 +00:00
LL | pub fn f() {}
| ^^^ help: remove the qualifier
|
= note: trait items always share the visibility of their trait
2018-08-08 12:28:26 +00:00
error[E0449]: visibility qualifiers are not permitted here
2018-12-25 15:56:47 +00:00
--> $DIR/privacy-sanity.rs:41:9
2018-08-08 12:28:26 +00:00
|
2019-03-09 12:03:44 +00:00
LL | pub const C: u8 = 0;
| ^^^ help: remove the qualifier
|
= note: trait items always share the visibility of their trait
2018-08-08 12:28:26 +00:00
error[E0449]: visibility qualifiers are not permitted here
2018-12-25 15:56:47 +00:00
--> $DIR/privacy-sanity.rs:42:9
2018-08-08 12:28:26 +00:00
|
2019-03-09 12:03:44 +00:00
LL | pub type T = u8;
| ^^^ help: remove the qualifier
|
= note: trait items always share the visibility of their trait
2018-08-08 12:28:26 +00:00
error[E0449]: visibility qualifiers are not permitted here
2018-12-25 15:56:47 +00:00
--> $DIR/privacy-sanity.rs:44:5
2018-08-08 12:28:26 +00:00
|
2019-03-09 12:03:44 +00:00
LL | pub impl S {
| ^^^ help: remove the qualifier
2018-08-08 12:28:26 +00:00
|
= note: place qualifiers on individual impl items instead
error[E0449]: visibility qualifiers are not permitted here
2018-12-25 15:56:47 +00:00
--> $DIR/privacy-sanity.rs:49:5
2018-08-08 12:28:26 +00:00
|
2019-03-09 12:03:44 +00:00
LL | pub extern "C" {
| ^^^ help: remove the qualifier
2018-08-08 12:28:26 +00:00
|
= note: place qualifiers on individual foreign items instead
error[E0449]: visibility qualifiers are not permitted here
2018-12-25 15:56:47 +00:00
--> $DIR/privacy-sanity.rs:68:5
2018-08-08 12:28:26 +00:00
|
2019-03-09 12:03:44 +00:00
LL | pub impl Tr for S {
| ^^^ help: remove the qualifier
|
= note: trait items always share the visibility of their trait
2018-08-08 12:28:26 +00:00
error[E0449]: visibility qualifiers are not permitted here
2018-12-25 15:56:47 +00:00
--> $DIR/privacy-sanity.rs:69:9
2018-08-08 12:28:26 +00:00
|
2019-03-09 12:03:44 +00:00
LL | pub fn f() {}
| ^^^ help: remove the qualifier
|
= note: trait items always share the visibility of their trait
2018-08-08 12:28:26 +00:00
error[E0449]: visibility qualifiers are not permitted here
2018-12-25 15:56:47 +00:00
--> $DIR/privacy-sanity.rs:70:9
2018-08-08 12:28:26 +00:00
|
2019-03-09 12:03:44 +00:00
LL | pub const C: u8 = 0;
| ^^^ help: remove the qualifier
|
= note: trait items always share the visibility of their trait
2018-08-08 12:28:26 +00:00
error[E0449]: visibility qualifiers are not permitted here
2018-12-25 15:56:47 +00:00
--> $DIR/privacy-sanity.rs:71:9
2018-08-08 12:28:26 +00:00
|
2019-03-09 12:03:44 +00:00
LL | pub type T = u8;
| ^^^ help: remove the qualifier
|
= note: trait items always share the visibility of their trait
2018-08-08 12:28:26 +00:00
error[E0449]: visibility qualifiers are not permitted here
2018-12-25 15:56:47 +00:00
--> $DIR/privacy-sanity.rs:73:5
2018-08-08 12:28:26 +00:00
|
2019-03-09 12:03:44 +00:00
LL | pub impl S {
| ^^^ help: remove the qualifier
2018-08-08 12:28:26 +00:00
|
= note: place qualifiers on individual impl items instead
error[E0449]: visibility qualifiers are not permitted here
2018-12-25 15:56:47 +00:00
--> $DIR/privacy-sanity.rs:78:5
2018-08-08 12:28:26 +00:00
|
2019-03-09 12:03:44 +00:00
LL | pub extern "C" {
| ^^^ help: remove the qualifier
2018-08-08 12:28:26 +00:00
|
= note: place qualifiers on individual foreign items instead
error: aborting due to 18 previous errors
For more information about this error, try `rustc --explain E0449`.