diff options
Diffstat (limited to 'tests/ui/unresolved/unresolved-asterisk-imports.stderr')
-rw-r--r-- | tests/ui/unresolved/unresolved-asterisk-imports.stderr | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/ui/unresolved/unresolved-asterisk-imports.stderr b/tests/ui/unresolved/unresolved-asterisk-imports.stderr new file mode 100644 index 000000000..8df8eab34 --- /dev/null +++ b/tests/ui/unresolved/unresolved-asterisk-imports.stderr @@ -0,0 +1,11 @@ +error[E0432]: unresolved import `not_existing_crate` + --> $DIR/unresolved-asterisk-imports.rs:1:5 + | +LL | use not_existing_crate::*; + | ^^^^^^^^^^^^^^^^^^ maybe a missing crate `not_existing_crate`? + | + = help: consider adding `extern crate not_existing_crate` to use the `not_existing_crate` crate + +error: aborting due to previous error + +For more information about this error, try `rustc --explain E0432`. |