]> git.proxmox.com Git - rustc.git/blame - src/test/ui/imports/issue-55457.stderr
New upstream version 1.63.0+dfsg1
[rustc.git] / src / test / ui / imports / issue-55457.stderr
CommitLineData
a1dfa0c6
XL
1error[E0432]: unresolved import `NonExistent`
2 --> $DIR/issue-55457.rs:1:5
3 |
532ac7d7
XL
4LL | use NonExistent;
5 | ^^^^^^^^^^^
6 | |
7 | no `NonExistent` in the root
8 | help: a similar name exists in the module: `non_existent`
a1dfa0c6
XL
9
10error[E0432]: unresolved import `non_existent`
11 --> $DIR/issue-55457.rs:2:5
12 |
532ac7d7 13LL | use non_existent::non_existent;
416331ca 14 | ^^^^^^^^^^^^ maybe a missing crate `non_existent`?
923072b8
FG
15 |
16 = help: consider adding `extern crate non_existent` to use the `non_existent` crate
a1dfa0c6
XL
17
18error: cannot determine resolution for the derive macro `NonExistent`
19 --> $DIR/issue-55457.rs:5:10
20 |
532ac7d7 21LL | #[derive(NonExistent)]
a1dfa0c6
XL
22 | ^^^^^^^^^^^
23 |
24 = note: import resolution is stuck, try simplifying macro imports
25
26error: cannot determine resolution for the attribute macro `non_existent`
27 --> $DIR/issue-55457.rs:4:3
28 |
532ac7d7 29LL | #[non_existent]
a1dfa0c6
XL
30 | ^^^^^^^^^^^^
31 |
32 = note: import resolution is stuck, try simplifying macro imports
33
dfeec247
XL
34error: cannot determine resolution for the derive macro `NonExistent`
35 --> $DIR/issue-55457.rs:5:10
36 |
37LL | #[derive(NonExistent)]
38 | ^^^^^^^^^^^
39 |
40 = note: import resolution is stuck, try simplifying macro imports
41
42error: cannot determine resolution for the derive macro `NonExistent`
43 --> $DIR/issue-55457.rs:5:10
44 |
45LL | #[derive(NonExistent)]
46 | ^^^^^^^^^^^
47 |
48 = note: import resolution is stuck, try simplifying macro imports
49
50error: aborting due to 6 previous errors
a1dfa0c6
XL
51
52For more information about this error, try `rustc --explain E0432`.