2024-05-21 14:12:05 -05:00
|
|
|
error[E0432]: unresolved import `spam`
|
|
|
|
--> $DIR/import-from-missing-star-2.rs:2:9
|
|
|
|
|
|
|
|
|
LL | use spam::*;
|
2024-07-23 14:43:46 -05:00
|
|
|
| ^^^^ you might be missing crate `spam`
|
2024-05-21 14:12:05 -05:00
|
|
|
|
|
2024-07-24 14:31:02 -05:00
|
|
|
help: consider importing the `spam` crate
|
|
|
|
|
|
|
|
|
LL + extern crate spam;
|
|
|
|
|
|
2024-05-21 14:12:05 -05:00
|
|
|
|
|
|
|
error: aborting due to 1 previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0432`.
|