about summary refs log tree commit diff
path: root/tests/ui/parser/missing-closing-angle-bracket-struct-field-ty.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/parser/missing-closing-angle-bracket-struct-field-ty.stderr')
-rw-r--r--tests/ui/parser/missing-closing-angle-bracket-struct-field-ty.stderr18
1 files changed, 18 insertions, 0 deletions
diff --git a/tests/ui/parser/missing-closing-angle-bracket-struct-field-ty.stderr b/tests/ui/parser/missing-closing-angle-bracket-struct-field-ty.stderr
new file mode 100644
index 00000000000..6d8b0c3fccd
--- /dev/null
+++ b/tests/ui/parser/missing-closing-angle-bracket-struct-field-ty.stderr
@@ -0,0 +1,18 @@
+error: expected one of `>`, a const expression, lifetime, or type, found `}`
+  --> $DIR/missing-closing-angle-bracket-struct-field-ty.rs:9:1
+   |
+LL | pub struct Foo {
+   |            --- while parsing this struct
+...
+LL |     c: Arc<Mutex<usize>>,
+   |                          - expected one of `>`, a const expression, lifetime, or type
+LL | }
+   | ^ unexpected token
+   |
+help: you might have meant to end the type parameters here
+   |
+LL |     b: Arc<Mutex<usize>>,
+   |                        +
+
+error: aborting due to previous error
+