rust/tests/ui/imports/issue-33464.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
837 B
Plaintext
Raw Normal View History

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