rust/src/test/ui/import2.stderr

10 lines
303 B
Plaintext
Raw Normal View History

2018-08-08 07:28:26 -05:00
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`
2018-08-08 07:28:26 -05:00
error: aborting due to previous error
For more information about this error, try `rustc --explain E0432`.