]> git.lizzy.rs Git - rust.git/blob - tests/ui/privacy/effective_visibilities_glob.stderr
add tests for 107090
[rust.git] / tests / ui / privacy / effective_visibilities_glob.stderr
1 error: Direct: pub(crate), Reexported: pub, Reachable: pub, ReachableThroughImplTrait: pub
2   --> $DIR/effective_visibilities_glob.rs:8:5
3    |
4 LL |     pub struct S1 {}
5    |     ^^^^^^^^^^^^^
6
7 error: Direct: pub(crate), Reexported: pub(crate), Reachable: pub(crate), ReachableThroughImplTrait: pub(crate)
8   --> $DIR/effective_visibilities_glob.rs:10:5
9    |
10 LL |     pub struct S2 {}
11    |     ^^^^^^^^^^^^^
12
13 error: Direct: pub(crate), Reexported: pub, Reachable: pub, ReachableThroughImplTrait: pub
14   --> $DIR/effective_visibilities_glob.rs:15:13
15    |
16 LL |     pub use crate::m::*;
17    |             ^^^^^^^^
18
19 error: Direct: pub, Reexported: pub, Reachable: pub, ReachableThroughImplTrait: pub
20   --> $DIR/effective_visibilities_glob.rs:19:9
21    |
22 LL | pub use glob::S1;
23    |         ^^^^^^^^
24
25 error: aborting due to 4 previous errors
26