mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 23:04:33 +00:00
24 lines
621 B
Plaintext
24 lines
621 B
Plaintext
error: cannot determine resolution for the import
|
|
--> $DIR/shadow-glob-module-resolution-4.rs:13:5
|
|
|
|
|
LL | use b::C as e;
|
|
| ^^^^^^^^^
|
|
|
|
error: cannot determine resolution for the import
|
|
--> $DIR/shadow-glob-module-resolution-4.rs:13:5
|
|
|
|
|
LL | use b::C as e;
|
|
| ^^^^^^^^^
|
|
|
|
|
= note: duplicate diagnostic emitted due to `-Z deduplicate-diagnostics=no`
|
|
|
|
error[E0432]: unresolved import `b::C`
|
|
--> $DIR/shadow-glob-module-resolution-4.rs:13:5
|
|
|
|
|
LL | use b::C as e;
|
|
| ^^^^^^^^^
|
|
|
|
error: aborting due to 3 previous errors
|
|
|
|
For more information about this error, try `rustc --explain E0432`.
|