summaryrefslogtreecommitdiffstats
path: root/src/test/ui/mismatched_types/recovered-block.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/mismatched_types/recovered-block.stderr')
-rw-r--r--src/test/ui/mismatched_types/recovered-block.stderr19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/test/ui/mismatched_types/recovered-block.stderr b/src/test/ui/mismatched_types/recovered-block.stderr
new file mode 100644
index 000000000..f275321ab
--- /dev/null
+++ b/src/test/ui/mismatched_types/recovered-block.stderr
@@ -0,0 +1,19 @@
+error: missing `struct` for struct definition
+ --> $DIR/recovered-block.rs:11:8
+ |
+LL | pub Foo { text }
+ | ^
+ |
+help: add `struct` here to parse `Foo` as a public struct
+ |
+LL | pub struct Foo { text }
+ | ++++++
+
+error: expected one of `(` or `<`, found `{`
+ --> $DIR/recovered-block.rs:17:9
+ |
+LL | Foo { text: "".to_string() }
+ | ^ expected one of `(` or `<`
+
+error: aborting due to 2 previous errors
+