]> git.lizzy.rs Git - rust.git/blob - src/test/ui/imports/issue-55457.stderr
Rollup merge of #57132 - daxpedda:master, r=steveklabnik
[rust.git] / src / test / ui / imports / issue-55457.stderr
1 error[E0432]: unresolved import `NonExistent`
2   --> $DIR/issue-55457.rs:1:5
3    |
4 LL | use NonExistent; //~ ERROR unresolved import `NonExistent`
5    |     ^^^^^^^^^^^ no `NonExistent` in the root. Did you mean to use `non_existent`?
6
7 error[E0432]: unresolved import `non_existent`
8   --> $DIR/issue-55457.rs:2:5
9    |
10 LL | use non_existent::non_existent; //~ ERROR unresolved import `non_existent`
11    |     ^^^^^^^^^^^^ maybe a missing `extern crate non_existent;`?
12
13 error: cannot determine resolution for the derive macro `NonExistent`
14   --> $DIR/issue-55457.rs:5:10
15    |
16 LL | #[derive(NonExistent)] //~ ERROR cannot determine resolution for the derive macro `NonExistent`
17    |          ^^^^^^^^^^^
18    |
19    = note: import resolution is stuck, try simplifying macro imports
20
21 error: cannot determine resolution for the attribute macro `non_existent`
22   --> $DIR/issue-55457.rs:4:3
23    |
24 LL | #[non_existent] //~ ERROR cannot determine resolution for the attribute macro `non_existent`
25    |   ^^^^^^^^^^^^
26    |
27    = note: import resolution is stuck, try simplifying macro imports
28
29 error: aborting due to 4 previous errors
30
31 For more information about this error, try `rustc --explain E0432`.