2018-07-15 16:11:54 -05:00
|
|
|
error[E0432]: unresolved import `abc`
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/issue-33464.rs:3:5
|
2018-07-15 16:11:54 -05:00
|
|
|
|
|
|
|
|
LL | use abc::one_el;
|
2019-08-05 09:50:37 -05:00
|
|
|
| ^^^ maybe a missing crate `abc`?
|
2022-05-21 21:48:35 -05:00
|
|
|
|
|
|
|
|
= help: consider adding `extern crate abc` to use the `abc` crate
|
2018-07-15 16:11:54 -05:00
|
|
|
|
|
|
|
error[E0432]: unresolved import `abc`
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/issue-33464.rs:5:5
|
2018-07-15 16:11:54 -05:00
|
|
|
|
|
|
|
|
LL | use abc::{a, bbb, cccccc};
|
2019-08-05 09:50:37 -05:00
|
|
|
| ^^^ maybe a missing crate `abc`?
|
2022-05-21 21:48:35 -05:00
|
|
|
|
|
|
|
|
= help: consider adding `extern crate abc` to use the `abc` crate
|
2018-07-15 16:11:54 -05:00
|
|
|
|
|
|
|
error[E0432]: unresolved import `a_very_long_name`
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/issue-33464.rs:7:5
|
2018-07-15 16:11:54 -05:00
|
|
|
|
|
|
|
|
LL | use a_very_long_name::{el, el2};
|
2019-08-05 09:50:37 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^ maybe a missing crate `a_very_long_name`?
|
2022-05-21 21:48:35 -05:00
|
|
|
|
|
|
|
|
= help: consider adding `extern crate a_very_long_name` to use the `a_very_long_name` crate
|
2018-07-15 16:11:54 -05:00
|
|
|
|
|
|
|
error: aborting due to 3 previous errors
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0432`.
|