2023-04-03 22:28:55 -05:00
|
|
|
error[E0449]: visibility qualifiers are not permitted here
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/priv-in-bad-locations.rs:1:1
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
2020-09-01 17:12:52 -04:00
|
|
|
LL | pub extern "C" {
|
2023-04-03 22:28:55 -05:00
|
|
|
| ^^^
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
|
|
|
= note: place qualifiers on individual foreign items instead
|
|
|
|
|
2023-04-03 22:28:55 -05:00
|
|
|
error[E0449]: visibility qualifiers are not permitted here
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/priv-in-bad-locations.rs:11:1
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | pub impl B {}
|
2023-04-03 22:28:55 -05:00
|
|
|
| ^^^
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
|
|
|
= note: place qualifiers on individual impl items instead
|
|
|
|
|
2023-04-03 22:28:55 -05:00
|
|
|
error[E0449]: visibility qualifiers are not permitted here
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/priv-in-bad-locations.rs:13:1
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | pub impl A for B {
|
2023-04-03 22:28:55 -05:00
|
|
|
| ^^^
|
|
|
|
|
|
|
|
|
= note: trait items always share the visibility of their trait
|
2018-08-08 14:28:26 +02:00
|
|
|
|
2023-04-03 22:28:55 -05:00
|
|
|
error[E0449]: visibility qualifiers are not permitted here
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/priv-in-bad-locations.rs:14:5
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | pub fn foo(&self) {}
|
2023-04-03 22:28:55 -05:00
|
|
|
| ^^^
|
|
|
|
|
|
|
|
|
= note: trait items always share the visibility of their trait
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
|
|
error: aborting due to 4 previous errors
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0449`.
|