summaryrefslogtreecommitdiffstats
path: root/src/test/ui/parser/issues/issue-89396.fixed
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/parser/issues/issue-89396.fixed')
-rw-r--r--src/test/ui/parser/issues/issue-89396.fixed16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/test/ui/parser/issues/issue-89396.fixed b/src/test/ui/parser/issues/issue-89396.fixed
new file mode 100644
index 000000000..823ad8cd1
--- /dev/null
+++ b/src/test/ui/parser/issues/issue-89396.fixed
@@ -0,0 +1,16 @@
+// Regression test for issue #89396: Try to recover from a
+// `=>` -> `=` or `->` typo in a match arm.
+
+// run-rustfix
+
+fn main() {
+ let opt = Some(42);
+ let _ = match opt {
+ Some(_) => true,
+ //~^ ERROR: expected one of
+ //~| HELP: try using a fat arrow here
+ None => false,
+ //~^ ERROR: expected one of
+ //~| HELP: try using a fat arrow here
+ };
+}