2018-07-15 21:11:54 +00:00
|
|
|
error[E0432]: unresolved import `abc`
|
|
|
|
--> $DIR/issue-33464.rs:13:5
|
|
|
|
|
|
|
|
|
LL | use abc::one_el;
|
2018-11-13 23:52:26 +00:00
|
|
|
| ^^^ maybe a missing `extern crate abc;`?
|
2018-07-15 21:11:54 +00:00
|
|
|
|
|
|
|
error[E0432]: unresolved import `abc`
|
|
|
|
--> $DIR/issue-33464.rs:15:5
|
|
|
|
|
|
|
|
|
LL | use abc::{a, bbb, cccccc};
|
2018-11-13 23:52:26 +00:00
|
|
|
| ^^^ maybe a missing `extern crate abc;`?
|
2018-07-15 21:11:54 +00:00
|
|
|
|
|
|
|
error[E0432]: unresolved import `a_very_long_name`
|
|
|
|
--> $DIR/issue-33464.rs:17:5
|
|
|
|
|
|
|
|
|
LL | use a_very_long_name::{el, el2};
|
2018-11-13 23:52:26 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^ maybe a missing `extern crate a_very_long_name;`?
|
2018-07-15 21:11:54 +00:00
|
|
|
|
|
|
|
error: aborting due to 3 previous errors
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0432`.
|