summaryrefslogtreecommitdiffstats
path: root/tests/ui/parser/issues/issue-89396.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/parser/issues/issue-89396.rs')
-rw-r--r--tests/ui/parser/issues/issue-89396.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/ui/parser/issues/issue-89396.rs b/tests/ui/parser/issues/issue-89396.rs
index f1d9efa52..d95f666d7 100644
--- a/tests/ui/parser/issues/issue-89396.rs
+++ b/tests/ui/parser/issues/issue-89396.rs
@@ -8,9 +8,9 @@ fn main() {
let _ = match opt {
Some(_) = true,
//~^ ERROR: expected one of
- //~| HELP: try using a fat arrow here
+ //~| HELP: use a fat arrow to start a match arm
None -> false,
//~^ ERROR: expected one of
- //~| HELP: try using a fat arrow here
+ //~| HELP: use a fat arrow to start a match arm
};
}