]> git.lizzy.rs Git - rust.git/blob - tests/ui/imports/issue-33464.stderr
Auto merge of #101138 - Rejyr:diagnostic-migration-rustc-lint-pt2, r=davidtwco
[rust.git] / tests / ui / imports / issue-33464.stderr
1 error[E0432]: unresolved import `abc`
2   --> $DIR/issue-33464.rs:3:5
3    |
4 LL | use abc::one_el;
5    |     ^^^ maybe a missing crate `abc`?
6    |
7    = help: consider adding `extern crate abc` to use the `abc` crate
8
9 error[E0432]: unresolved import `abc`
10   --> $DIR/issue-33464.rs:5:5
11    |
12 LL | use abc::{a, bbb, cccccc};
13    |     ^^^ maybe a missing crate `abc`?
14    |
15    = help: consider adding `extern crate abc` to use the `abc` crate
16
17 error[E0432]: unresolved import `a_very_long_name`
18   --> $DIR/issue-33464.rs:7:5
19    |
20 LL | use a_very_long_name::{el, el2};
21    |     ^^^^^^^^^^^^^^^^ maybe a missing crate `a_very_long_name`?
22    |
23    = help: consider adding `extern crate a_very_long_name` to use the `a_very_long_name` crate
24
25 error: aborting due to 3 previous errors
26
27 For more information about this error, try `rustc --explain E0432`.