summaryrefslogtreecommitdiffstats
path: root/tests/ui/resolve/issue-109250.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/resolve/issue-109250.stderr')
-rw-r--r--tests/ui/resolve/issue-109250.stderr14
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/ui/resolve/issue-109250.stderr b/tests/ui/resolve/issue-109250.stderr
new file mode 100644
index 000000000..d5b8c08ce
--- /dev/null
+++ b/tests/ui/resolve/issue-109250.stderr
@@ -0,0 +1,14 @@
+error[E0433]: failed to resolve: use of undeclared type `HashMap`
+ --> $DIR/issue-109250.rs:2:5
+ |
+LL | HashMap::new;
+ | ^^^^^^^ use of undeclared type `HashMap`
+ |
+help: consider importing this struct
+ |
+LL + use std::collections::HashMap;
+ |
+
+error: aborting due to previous error
+
+For more information about this error, try `rustc --explain E0433`.