summaryrefslogtreecommitdiffstats
path: root/src/test/ui/resolve/use_suggestion.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/resolve/use_suggestion.stderr')
-rw-r--r--src/test/ui/resolve/use_suggestion.stderr14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/test/ui/resolve/use_suggestion.stderr b/src/test/ui/resolve/use_suggestion.stderr
index 4fff179b1..54ad85383 100644
--- a/src/test/ui/resolve/use_suggestion.stderr
+++ b/src/test/ui/resolve/use_suggestion.stderr
@@ -1,14 +1,8 @@
-error[E0433]: failed to resolve: use of undeclared type `GooMap`
- --> $DIR/use_suggestion.rs:3:14
- |
-LL | let x2 = GooMap::new();
- | ^^^^^^ use of undeclared type `GooMap`
-
error[E0433]: failed to resolve: use of undeclared type `HashMap`
--> $DIR/use_suggestion.rs:2:14
|
LL | let x1 = HashMap::new();
- | ^^^^^^^ not found in this scope
+ | ^^^^^^^ use of undeclared type `HashMap`
|
help: consider importing this struct
|
@@ -32,6 +26,12 @@ error[E0412]: cannot find type `GooMap` in this scope
LL | let y2: GooMap;
| ^^^^^^ not found in this scope
+error[E0433]: failed to resolve: use of undeclared type `GooMap`
+ --> $DIR/use_suggestion.rs:3:14
+ |
+LL | let x2 = GooMap::new();
+ | ^^^^^^ use of undeclared type `GooMap`
+
error: aborting due to 4 previous errors
Some errors have detailed explanations: E0412, E0433.