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
3.8 KiB
Plaintext
Raw Normal View History

error[E0449]: visibility qualifiers are not permitted here
2018-12-25 09:56:47 -06:00
--> $DIR/privacy-sanity.rs:13:1
2018-08-08 07:28:26 -05:00
|
2019-03-09 06:03:44 -06:00
LL | pub impl Tr for S {
| ^^^
|
= note: trait items always share the visibility of their trait
2018-08-08 07:28:26 -05:00
error[E0449]: visibility qualifiers are not permitted here
2018-12-25 09:56:47 -06:00
--> $DIR/privacy-sanity.rs:14:5
2018-08-08 07:28:26 -05:00
|
2019-03-09 06:03:44 -06:00
LL | pub fn f() {}
| ^^^
|
= note: trait items always share the visibility of their trait
2018-08-08 07:28:26 -05:00
error[E0449]: visibility qualifiers are not permitted here
2018-12-25 09:56:47 -06:00
--> $DIR/privacy-sanity.rs:15:5
2018-08-08 07:28:26 -05:00
|
2019-03-09 06:03:44 -06:00
LL | pub const C: u8 = 0;
| ^^^
|
= note: trait items always share the visibility of their trait
2018-08-08 07:28:26 -05:00
error[E0449]: visibility qualifiers are not permitted here
2018-12-25 09:56:47 -06:00
--> $DIR/privacy-sanity.rs:16:5
2018-08-08 07:28:26 -05:00
|
2019-03-09 06:03:44 -06:00
LL | pub type T = u8;
| ^^^
|
= note: trait items always share the visibility of their trait
2018-08-08 07:28:26 -05:00
error[E0449]: visibility qualifiers are not permitted here
2018-12-25 09:56:47 -06:00
--> $DIR/privacy-sanity.rs:18:1
2018-08-08 07:28:26 -05:00
|
2019-03-09 06:03:44 -06:00
LL | pub impl S {
| ^^^
2018-08-08 07:28:26 -05:00
|
= note: place qualifiers on individual impl items instead
error[E0449]: visibility qualifiers are not permitted here
2018-12-25 09:56:47 -06:00
--> $DIR/privacy-sanity.rs:23:1
2018-08-08 07:28:26 -05:00
|
2019-03-09 06:03:44 -06:00
LL | pub extern "C" {
| ^^^
2018-08-08 07:28:26 -05:00
|
= note: place qualifiers on individual foreign items instead
error[E0449]: visibility qualifiers are not permitted here
2018-12-25 09:56:47 -06:00
--> $DIR/privacy-sanity.rs:39:5
2018-08-08 07:28:26 -05:00
|
2019-03-09 06:03:44 -06:00
LL | pub impl Tr for S {
| ^^^
|
= note: trait items always share the visibility of their trait
2018-08-08 07:28:26 -05:00
error[E0449]: visibility qualifiers are not permitted here
2018-12-25 09:56:47 -06:00
--> $DIR/privacy-sanity.rs:40:9
2018-08-08 07:28:26 -05:00
|
2019-03-09 06:03:44 -06:00
LL | pub fn f() {}
| ^^^
|
= note: trait items always share the visibility of their trait
2018-08-08 07:28:26 -05:00
error[E0449]: visibility qualifiers are not permitted here
2018-12-25 09:56:47 -06:00
--> $DIR/privacy-sanity.rs:41:9
2018-08-08 07:28:26 -05:00
|
2019-03-09 06:03:44 -06:00
LL | pub const C: u8 = 0;
| ^^^
|
= note: trait items always share the visibility of their trait
2018-08-08 07:28:26 -05:00
error[E0449]: visibility qualifiers are not permitted here
2018-12-25 09:56:47 -06:00
--> $DIR/privacy-sanity.rs:42:9
2018-08-08 07:28:26 -05:00
|
2019-03-09 06:03:44 -06:00
LL | pub type T = u8;
| ^^^
|
= note: trait items always share the visibility of their trait
2018-08-08 07:28:26 -05:00
error[E0449]: visibility qualifiers are not permitted here
2018-12-25 09:56:47 -06:00
--> $DIR/privacy-sanity.rs:44:5
2018-08-08 07:28:26 -05:00
|
2019-03-09 06:03:44 -06:00
LL | pub impl S {
| ^^^
2018-08-08 07:28:26 -05:00
|
= note: place qualifiers on individual impl items instead
error[E0449]: visibility qualifiers are not permitted here
2018-12-25 09:56:47 -06:00
--> $DIR/privacy-sanity.rs:49:5
2018-08-08 07:28:26 -05:00
|
2019-03-09 06:03:44 -06:00
LL | pub extern "C" {
| ^^^
2018-08-08 07:28:26 -05:00
|
= note: place qualifiers on individual foreign items instead
error[E0449]: visibility qualifiers are not permitted here
2018-12-25 09:56:47 -06:00
--> $DIR/privacy-sanity.rs:68:5
2018-08-08 07:28:26 -05:00
|
2019-03-09 06:03:44 -06:00
LL | pub impl Tr for S {
| ^^^
|
= note: trait items always share the visibility of their trait
2018-08-08 07:28:26 -05:00
error[E0449]: visibility qualifiers are not permitted here
2018-12-25 09:56:47 -06:00
--> $DIR/privacy-sanity.rs:69:9
2018-08-08 07:28:26 -05:00
|
2019-03-09 06:03:44 -06:00
LL | pub fn f() {}
| ^^^
|
= note: trait items always share the visibility of their trait
2018-08-08 07:28:26 -05:00
error[E0449]: visibility qualifiers are not permitted here
2018-12-25 09:56:47 -06:00
--> $DIR/privacy-sanity.rs:70:9
2018-08-08 07:28:26 -05:00
|
2019-03-09 06:03:44 -06:00
LL | pub const C: u8 = 0;
| ^^^
|
= note: trait items always share the visibility of their trait
2018-08-08 07:28:26 -05:00
error[E0449]: visibility qualifiers are not permitted here
2018-12-25 09:56:47 -06:00
--> $DIR/privacy-sanity.rs:71:9
2018-08-08 07:28:26 -05:00
|
2019-03-09 06:03:44 -06:00
LL | pub type T = u8;
| ^^^
|
= note: trait items always share the visibility of their trait
2018-08-08 07:28:26 -05:00
error[E0449]: visibility qualifiers are not permitted here
2018-12-25 09:56:47 -06:00
--> $DIR/privacy-sanity.rs:73:5
2018-08-08 07:28:26 -05:00
|
2019-03-09 06:03:44 -06:00
LL | pub impl S {
| ^^^
2018-08-08 07:28:26 -05:00
|
= note: place qualifiers on individual impl items instead
error[E0449]: visibility qualifiers are not permitted here
2018-12-25 09:56:47 -06:00
--> $DIR/privacy-sanity.rs:78:5
2018-08-08 07:28:26 -05:00
|
2019-03-09 06:03:44 -06:00
LL | pub extern "C" {
| ^^^
2018-08-08 07:28:26 -05: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`.