]> git.proxmox.com Git - rustc.git/blame - src/test/ui/imports/issue-33464.stderr
New upstream version 1.63.0+dfsg1
[rustc.git] / src / test / ui / imports / issue-33464.stderr
CommitLineData
8faf50e0 1error[E0432]: unresolved import `abc`
0731742a 2 --> $DIR/issue-33464.rs:3:5
8faf50e0
XL
3 |
4LL | use abc::one_el;
416331ca 5 | ^^^ maybe a missing crate `abc`?
923072b8
FG
6 |
7 = help: consider adding `extern crate abc` to use the `abc` crate
8faf50e0
XL
8
9error[E0432]: unresolved import `abc`
0731742a 10 --> $DIR/issue-33464.rs:5:5
8faf50e0
XL
11 |
12LL | use abc::{a, bbb, cccccc};
416331ca 13 | ^^^ maybe a missing crate `abc`?
923072b8
FG
14 |
15 = help: consider adding `extern crate abc` to use the `abc` crate
8faf50e0
XL
16
17error[E0432]: unresolved import `a_very_long_name`
0731742a 18 --> $DIR/issue-33464.rs:7:5
8faf50e0
XL
19 |
20LL | use a_very_long_name::{el, el2};
416331ca 21 | ^^^^^^^^^^^^^^^^ maybe a missing crate `a_very_long_name`?
923072b8
FG
22 |
23 = help: consider adding `extern crate a_very_long_name` to use the `a_very_long_name` crate
8faf50e0
XL
24
25error: aborting due to 3 previous errors
26
27For more information about this error, try `rustc --explain E0432`.