summaryrefslogtreecommitdiffstats
path: root/src/test/ui/issues/issue-49257.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/issues/issue-49257.stderr')
-rw-r--r--src/test/ui/issues/issue-49257.stderr42
1 files changed, 42 insertions, 0 deletions
diff --git a/src/test/ui/issues/issue-49257.stderr b/src/test/ui/issues/issue-49257.stderr
new file mode 100644
index 000000000..846467f7f
--- /dev/null
+++ b/src/test/ui/issues/issue-49257.stderr
@@ -0,0 +1,42 @@
+error: expected `}`, found `,`
+ --> $DIR/issue-49257.rs:10:19
+ |
+LL | let Point { .., y, } = p;
+ | --^
+ | | |
+ | | expected `}`
+ | `..` must be at the end and cannot have a trailing comma
+ |
+help: move the `..` to the end of the field list
+ |
+LL - let Point { .., y, } = p;
+LL + let Point { y, .. } = p;
+ |
+
+error: expected `}`, found `,`
+ --> $DIR/issue-49257.rs:11:19
+ |
+LL | let Point { .., y } = p;
+ | --^
+ | | |
+ | | expected `}`
+ | `..` must be at the end and cannot have a trailing comma
+ |
+help: move the `..` to the end of the field list
+ |
+LL - let Point { .., y } = p;
+LL + let Point { y , .. } = p;
+ |
+
+error: expected `}`, found `,`
+ --> $DIR/issue-49257.rs:12:19
+ |
+LL | let Point { .., } = p;
+ | --^
+ | | |
+ | | expected `}`
+ | | help: remove this comma
+ | `..` must be at the end and cannot have a trailing comma
+
+error: aborting due to 3 previous errors
+