]> git.lizzy.rs Git - rust.git/blob - src/test/ui/unresolved/unresolved-asterisk-imports.stderr
Auto merge of #100845 - timvermeulen:iter_compare, r=scottmcm
[rust.git] / src / test / ui / unresolved / unresolved-asterisk-imports.stderr
1 error[E0432]: unresolved import `not_existing_crate`
2   --> $DIR/unresolved-asterisk-imports.rs:1:5
3    |
4 LL | use not_existing_crate::*;
5    |     ^^^^^^^^^^^^^^^^^^ maybe a missing crate `not_existing_crate`?
6    |
7    = help: consider adding `extern crate not_existing_crate` to use the `not_existing_crate` crate
8
9 error: aborting due to previous error
10
11 For more information about this error, try `rustc --explain E0432`.