2017-03-17 23:13:00 -05:00
|
|
|
error: incorrect visibility restriction
|
2017-03-27 06:59:10 -05:00
|
|
|
--> $DIR/pub-restricted.rs:15:6
|
2017-03-17 23:13:00 -05:00
|
|
|
|
|
|
|
|
15 | pub (a) fn afn() {}
|
2017-03-27 06:59:10 -05:00
|
|
|
| ^ to make this visible only to module `a`, add `in` before the path: `in a`
|
2017-03-17 23:13:00 -05:00
|
|
|
|
|
|
|
|
= help: some possible visibility restrictions are:
|
|
|
|
`pub(crate)`: visible only on the current crate
|
|
|
|
`pub(super)`: visible only in the current module's parent
|
|
|
|
`pub(in path::to::module)`: visible only on the specified path
|
|
|
|
|
|
|
|
error: incorrect visibility restriction
|
2017-03-27 06:59:10 -05:00
|
|
|
--> $DIR/pub-restricted.rs:16:6
|
2017-03-17 23:13:00 -05:00
|
|
|
|
|
|
|
|
16 | pub (b) fn bfn() {}
|
2017-03-27 06:59:10 -05:00
|
|
|
| ^ to make this visible only to module `b`, add `in` before the path: `in b`
|
2017-03-17 23:13:00 -05:00
|
|
|
|
|
|
|
|
= help: some possible visibility restrictions are:
|
|
|
|
`pub(crate)`: visible only on the current crate
|
|
|
|
`pub(super)`: visible only in the current module's parent
|
|
|
|
`pub(in path::to::module)`: visible only on the specified path
|
|
|
|
|
|
|
|
error: incorrect visibility restriction
|
2017-03-27 06:59:10 -05:00
|
|
|
--> $DIR/pub-restricted.rs:32:14
|
2017-03-17 23:13:00 -05:00
|
|
|
|
|
|
|
|
32 | pub (a) invalid: usize,
|
2017-03-27 06:59:10 -05:00
|
|
|
| ^ to make this visible only to module `a`, add `in` before the path: `in a`
|
|
|
|
|
|
|
|
|
= help: some possible visibility restrictions are:
|
|
|
|
`pub(crate)`: visible only on the current crate
|
|
|
|
`pub(super)`: visible only in the current module's parent
|
|
|
|
`pub(in path::to::module)`: visible only on the specified path
|
|
|
|
|
|
|
|
error: incorrect visibility restriction
|
|
|
|
--> $DIR/pub-restricted.rs:41:6
|
|
|
|
|
|
|
|
|
41 | pub (xyz) fn xyz() {}
|
|
|
|
| ^^^ to make this visible only to module `xyz`, add `in` before the path: `in xyz`
|
2017-03-17 23:13:00 -05:00
|
|
|
|
|
|
|
|
= help: some possible visibility restrictions are:
|
|
|
|
`pub(crate)`: visible only on the current crate
|
|
|
|
`pub(super)`: visible only in the current module's parent
|
|
|
|
`pub(in path::to::module)`: visible only on the specified path
|
|
|
|
|
|
|
|
error: visibilities can only be restricted to ancestor modules
|
|
|
|
--> $DIR/pub-restricted.rs:33:17
|
|
|
|
|
|
|
|
|
33 | pub (in x) non_parent_invalid: usize,
|
|
|
|
| ^
|
|
|
|
|
2017-03-27 06:59:10 -05:00
|
|
|
error: aborting due to 5 previous errors
|
2017-03-17 23:13:00 -05:00
|
|
|
|