]> git.lizzy.rs Git - rust.git/blob - src/test/ui/imports/import-from-missing.stderr
Rollup merge of #57132 - daxpedda:master, r=steveklabnik
[rust.git] / src / test / ui / imports / import-from-missing.stderr
1 error[E0432]: unresolved import `spam::eggs`
2   --> $DIR/import-from-missing.rs:1:17
3    |
4 LL | use spam::{ham, eggs}; //~ ERROR unresolved import `spam::eggs` [E0432]
5    |                 ^^^^ no `eggs` in `spam`
6
7 error: aborting due to previous error
8
9 For more information about this error, try `rustc --explain E0432`.