summaryrefslogtreecommitdiffstats
path: root/tests/ui/parser/issue-49257.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/parser/issue-49257.stderr')
-rw-r--r--tests/ui/parser/issue-49257.stderr2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/ui/parser/issue-49257.stderr b/tests/ui/parser/issue-49257.stderr
index 846467f7f..97e16f88b 100644
--- a/tests/ui/parser/issue-49257.stderr
+++ b/tests/ui/parser/issue-49257.stderr
@@ -25,7 +25,7 @@ LL | let Point { .., y } = p;
help: move the `..` to the end of the field list
|
LL - let Point { .., y } = p;
-LL + let Point { y , .. } = p;
+LL + let Point { y, .. } = p;
|
error: expected `}`, found `,`