blob: b19739377015d5181d7ca4f3965224c865f6c339 (
plain)
1
2
3
4
5
6
7
8
9
|
error[E0432]: unresolved import `baz::zed`
--> $DIR/import2.rs:11:10
|
LL | use baz::zed::bar; //~ ERROR unresolved import `baz::zed` [E0432]
| ^^^ could not find `zed` in `baz`
error: aborting due to previous error
For more information about this error, try `rustc --explain E0432`.
|