summaryrefslogtreecommitdiffstats
path: root/src/test/ui/pattern/bindings-after-at/nested-type-ascription-syntactically-invalid.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/pattern/bindings-after-at/nested-type-ascription-syntactically-invalid.stderr')
-rw-r--r--src/test/ui/pattern/bindings-after-at/nested-type-ascription-syntactically-invalid.stderr26
1 files changed, 26 insertions, 0 deletions
diff --git a/src/test/ui/pattern/bindings-after-at/nested-type-ascription-syntactically-invalid.stderr b/src/test/ui/pattern/bindings-after-at/nested-type-ascription-syntactically-invalid.stderr
new file mode 100644
index 000000000..27660ae40
--- /dev/null
+++ b/src/test/ui/pattern/bindings-after-at/nested-type-ascription-syntactically-invalid.stderr
@@ -0,0 +1,26 @@
+error: expected one of `!`, `(`, `+`, `::`, `;`, `<`, or `=`, found `@`
+ --> $DIR/nested-type-ascription-syntactically-invalid.rs:18:15
+ |
+LL | let a: u8 @ b = 0;
+ | ^ expected one of 7 possible tokens
+
+error: expected one of `)`, `,`, `@`, or `|`, found `:`
+ --> $DIR/nested-type-ascription-syntactically-invalid.rs:24:15
+ |
+LL | let a @ (b: u8);
+ | ^ expected one of `)`, `,`, `@`, or `|`
+
+error: expected one of `!`, `(`, `+`, `::`, `;`, `<`, or `=`, found `)`
+ --> $DIR/nested-type-ascription-syntactically-invalid.rs:24:19
+ |
+LL | let a @ (b: u8);
+ | ^ expected one of 7 possible tokens
+
+error: expected one of `!`, `(`, `+`, `::`, `;`, `<`, or `=`, found `@`
+ --> $DIR/nested-type-ascription-syntactically-invalid.rs:31:15
+ |
+LL | let a: T1 @ Outer(b: T2);
+ | ^ expected one of 7 possible tokens
+
+error: aborting due to 4 previous errors
+