Skip to content

Commit 89fb0e0

Browse files
committed
parse fail test fallout
1 parent 7e5bca7 commit 89fb0e0

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/test/parse-fail/match-refactor-to-expr.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,10 @@
1212

1313
fn main() {
1414
let foo =
15-
match //~ NOTE did you mean to remove this `match` keyword?
15+
match //~ GUESS
1616
Some(4).unwrap_or_else(5)
1717
; //~ ERROR expected one of `.`, `?`, `{`, or an operator, found `;`
18+
//~^ HELP did you mean to remove this `match` keyword?
1819

1920
println!("{}", foo)
2021
}

0 commit comments

Comments
 (0)