summaryrefslogtreecommitdiffstats
path: root/tests/ui/suggestions/type-not-found-in-adt-field.stderr
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--tests/ui/suggestions/type-not-found-in-adt-field.stderr (renamed from src/test/ui/suggestions/type-not-found-in-adt-field.stderr)7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/test/ui/suggestions/type-not-found-in-adt-field.stderr b/tests/ui/suggestions/type-not-found-in-adt-field.stderr
index e990fb5ba..934ba87bb 100644
--- a/src/test/ui/suggestions/type-not-found-in-adt-field.stderr
+++ b/tests/ui/suggestions/type-not-found-in-adt-field.stderr
@@ -7,10 +7,13 @@ LL | m: Vec<Someunknownname<String, ()>>,
error[E0412]: cannot find type `K` in this scope
--> $DIR/type-not-found-in-adt-field.rs:6:8
|
-LL | struct OtherStruct {
- | - help: you might be missing a type parameter: `<K>`
LL | m: K,
| ^ not found in this scope
+ |
+help: you might be missing a type parameter
+ |
+LL | struct OtherStruct<K> {
+ | +++
error: aborting due to 2 previous errors