mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
27 lines
831 B
Plaintext
27 lines
831 B
Plaintext
error: Direct: pub(crate), Reexported: pub, Reachable: pub, ReachableThroughImplTrait: pub
|
|
--> $DIR/effective_visibilities_glob.rs:8:5
|
|
|
|
|
LL | pub struct S1 {}
|
|
| ^^^^^^^^^^^^^
|
|
|
|
error: Direct: pub(crate), Reexported: pub(crate), Reachable: pub(crate), ReachableThroughImplTrait: pub(crate)
|
|
--> $DIR/effective_visibilities_glob.rs:10:5
|
|
|
|
|
LL | pub struct S2 {}
|
|
| ^^^^^^^^^^^^^
|
|
|
|
error: Direct: pub(crate), Reexported: pub, Reachable: pub, ReachableThroughImplTrait: pub
|
|
--> $DIR/effective_visibilities_glob.rs:15:13
|
|
|
|
|
LL | pub use crate::m::*;
|
|
| ^^^^^^^^
|
|
|
|
error: Direct: pub, Reexported: pub, Reachable: pub, ReachableThroughImplTrait: pub
|
|
--> $DIR/effective_visibilities_glob.rs:19:9
|
|
|
|
|
LL | pub use glob::S1;
|
|
| ^^^^^^^^
|
|
|
|
error: aborting due to 4 previous errors
|
|
|