summaryrefslogtreecommitdiffstats
path: root/src/test/ui/parser/parse-error-correct.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/parser/parse-error-correct.stderr')
-rw-r--r--src/test/ui/parser/parse-error-correct.stderr33
1 files changed, 33 insertions, 0 deletions
diff --git a/src/test/ui/parser/parse-error-correct.stderr b/src/test/ui/parser/parse-error-correct.stderr
new file mode 100644
index 000000000..691df9126
--- /dev/null
+++ b/src/test/ui/parser/parse-error-correct.stderr
@@ -0,0 +1,33 @@
+error: unexpected token: `;`
+ --> $DIR/parse-error-correct.rs:6:15
+ |
+LL | let x = y.;
+ | ^
+
+error: unexpected token: `(`
+ --> $DIR/parse-error-correct.rs:7:15
+ |
+LL | let x = y.();
+ | ^
+
+error[E0618]: expected function, found `{integer}`
+ --> $DIR/parse-error-correct.rs:7:13
+ |
+LL | let y = 42;
+ | - `y` has type `{integer}`
+LL | let x = y.;
+LL | let x = y.();
+ | ^---
+ | |
+ | call expression requires function
+
+error[E0610]: `{integer}` is a primitive type and therefore doesn't have fields
+ --> $DIR/parse-error-correct.rs:9:15
+ |
+LL | let x = y.foo;
+ | ^^^
+
+error: aborting due to 4 previous errors
+
+Some errors have detailed explanations: E0610, E0618.
+For more information about an error, try `rustc --explain E0610`.