]> git.lizzy.rs Git - rust.git/blob - src/test/ui/pub/pub-restricted.stderr
044e5fc5188e63dc5ac709040f69a1aa61fdd17b
[rust.git] / src / test / ui / pub / pub-restricted.stderr
1 error[E0704]: incorrect visibility restriction
2   --> $DIR/pub-restricted.rs:5:6
3    |
4 LL | pub (a) fn afn() {}
5    |      ^ help: make this visible only to module `a` with `in`: `in a`
6    |
7    = help: some possible visibility restrictions are:
8            `pub(crate)`: visible only on the current crate
9            `pub(super)`: visible only in the current module's parent
10            `pub(in path::to::module)`: visible only on the specified path
11
12 error[E0704]: incorrect visibility restriction
13   --> $DIR/pub-restricted.rs:6:6
14    |
15 LL | pub (b) fn bfn() {}
16    |      ^ help: make this visible only to module `b` with `in`: `in b`
17    |
18    = help: some possible visibility restrictions are:
19            `pub(crate)`: visible only on the current crate
20            `pub(super)`: visible only in the current module's parent
21            `pub(in path::to::module)`: visible only on the specified path
22
23 error[E0704]: incorrect visibility restriction
24   --> $DIR/pub-restricted.rs:22:14
25    |
26 LL |         pub (a) invalid: usize,
27    |              ^ help: make this visible only to module `a` with `in`: `in a`
28    |
29    = help: some possible visibility restrictions are:
30            `pub(crate)`: visible only on the current crate
31            `pub(super)`: visible only in the current module's parent
32            `pub(in path::to::module)`: visible only on the specified path
33
34 error[E0704]: incorrect visibility restriction
35   --> $DIR/pub-restricted.rs:31:6
36    |
37 LL | pub (xyz) fn xyz() {}
38    |      ^^^ help: make this visible only to module `xyz` with `in`: `in xyz`
39    |
40    = help: some possible visibility restrictions are:
41            `pub(crate)`: visible only on the current crate
42            `pub(super)`: visible only in the current module's parent
43            `pub(in path::to::module)`: visible only on the specified path
44
45 error: visibilities can only be restricted to ancestor modules
46   --> $DIR/pub-restricted.rs:23:17
47    |
48 LL |         pub (in x) non_parent_invalid: usize,
49    |                 ^
50
51 error: aborting due to 5 previous errors
52