summaryrefslogtreecommitdiffstats
path: root/tests/ui/unresolved/unresolved-import-avoid-suggesting-global-path.stderr
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--tests/ui/unresolved/unresolved-import-avoid-suggesting-global-path.stderr25
1 files changed, 25 insertions, 0 deletions
diff --git a/tests/ui/unresolved/unresolved-import-avoid-suggesting-global-path.stderr b/tests/ui/unresolved/unresolved-import-avoid-suggesting-global-path.stderr
new file mode 100644
index 000000000..b0352ab67
--- /dev/null
+++ b/tests/ui/unresolved/unresolved-import-avoid-suggesting-global-path.stderr
@@ -0,0 +1,25 @@
+error[E0432]: unresolved import `module::SomeUsefulType`
+ --> $DIR/unresolved-import-avoid-suggesting-global-path.rs:18:9
+ |
+LL | use module::SomeUsefulType;
+ | ^^^^^^^^^^^^^^^^^^^^^^ no `SomeUsefulType` in `hygiene::module`
+ |
+help: consider importing this struct instead
+ |
+LL | use library::SomeUsefulType;
+ | ~~~~~~~~~~~~~~~~~~~~~~~
+
+error[E0432]: unresolved import `module::SomeUsefulType`
+ --> $DIR/unresolved-import-avoid-suggesting-global-path.rs:28:9
+ |
+LL | use module::SomeUsefulType;
+ | ^^^^^^^^^^^^^^^^^^^^^^ no `SomeUsefulType` in `glob::module`
+ |
+help: consider importing this struct instead
+ |
+LL | use library::SomeUsefulType;
+ | ~~~~~~~~~~~~~~~~~~~~~~~
+
+error: aborting due to 2 previous errors
+
+For more information about this error, try `rustc --explain E0432`.