blob: 73497e3fed5bfb399fde8a3e7fce78bb3fe16709 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
error[E0449]: visibility qualifiers are not permitted here
--> $DIR/useless-pub.rs:8:5
|
LL | pub fn foo(&self) {}
| ^^^
|
= note: trait items always share the visibility of their trait
error[E0449]: visibility qualifiers are not permitted here
--> $DIR/useless-pub.rs:12:10
|
LL | V1 { pub f: i32 },
| ^^^
|
= note: enum variants and their fields always share the visibility of the enum they are in
error[E0449]: visibility qualifiers are not permitted here
--> $DIR/useless-pub.rs:13:8
|
LL | V2(pub i32),
| ^^^
|
= note: enum variants and their fields always share the visibility of the enum they are in
error: aborting due to 3 previous errors
For more information about this error, try `rustc --explain E0449`.
|