mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
15 lines
416 B
Text
15 lines
416 B
Text
error[E0432]: unresolved import `Foo`
|
|
--> $DIR/issue-38054-do-not-show-unresolved-names.rs:1:5
|
|
|
|
|
LL | use Foo;
|
|
| ^^^ no `Foo` in the root
|
|
|
|
error[E0432]: unresolved import `Foo1`
|
|
--> $DIR/issue-38054-do-not-show-unresolved-names.rs:3:5
|
|
|
|
|
LL | use Foo1;
|
|
| ^^^^ no `Foo1` in the root
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
For more information about this error, try `rustc --explain E0432`.
|