mirror of
https://github.com/rust-lang/rust.git
synced 2025-10-02 10:18:25 +00:00
16 lines
464 B
Plaintext
16 lines
464 B
Plaintext
error[E0433]: failed to resolve: could not find `bar` in the list of imported crates
|
|
--> $DIR/visibility-indeterminate.rs:5:10
|
|
|
|
|
LL | pub(in ::bar) struct Baz {}
|
|
| ^^^ could not find `bar` in the list of imported crates
|
|
|
|
error: cannot find macro `foo` in this scope
|
|
--> $DIR/visibility-indeterminate.rs:3:1
|
|
|
|
|
LL | foo!();
|
|
| ^^^
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
For more information about this error, try `rustc --explain E0433`.
|