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/useless-pub.rs:8: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
|
|
|
|
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/useless-pub.rs:12:10
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | V1 { pub f: i32 },
|
2023-04-03 22:28:55 -05:00
|
|
|
| ^^^
|
|
|
|
|
|
|
|
|
= note: enum variants and their fields always share the visibility of the enum they are in
|
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/useless-pub.rs:13:8
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | V2(pub i32),
|
2023-04-03 22:28:55 -05:00
|
|
|
| ^^^
|
|
|
|
|
|
|
|
|
= note: enum variants and their fields always share the visibility of the enum they are in
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
|
|
error: aborting due to 3 previous errors
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0449`.
|