summaryrefslogtreecommitdiff
path: root/tests/ui/resolve/use_suggestion_placement.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/resolve/use_suggestion_placement.stderr')
-rw-r--r--tests/ui/resolve/use_suggestion_placement.stderr3
1 files changed, 0 insertions, 3 deletions
diff --git a/tests/ui/resolve/use_suggestion_placement.stderr b/tests/ui/resolve/use_suggestion_placement.stderr
index 9288530ad2e..3611f9ae6b4 100644
--- a/tests/ui/resolve/use_suggestion_placement.stderr
+++ b/tests/ui/resolve/use_suggestion_placement.stderr
@@ -7,7 +7,6 @@ LL | type Bar = Path;
help: consider importing this struct
|
LL + use std::path::Path;
-LL | #[derive(Debug)]
|
error[E0425]: cannot find value `A` in this scope
@@ -19,7 +18,6 @@ LL | let _ = A;
help: consider importing this constant
|
LL + use m::A;
-LL | macro_rules! y {
|
error[E0412]: cannot find type `HashMap` in this scope
@@ -31,7 +29,6 @@ LL | type Dict<K, V> = HashMap<K, V>;
help: consider importing this struct
|
LL + use std::collections::HashMap;
-LL | macro_rules! y {
|
error: aborting due to 3 previous errors