]> git.lizzy.rs Git - rust.git/blob - tests/ui/unresolved/unresolved-asterisk-imports.stderr
Auto merge of #106959 - tmiasko:opt-funclets, r=davidtwco
[rust.git] / tests / 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`.