Skip to content

Commit 9e68500

Browse files
committed
Fix use of expr_alt in fuzzer that was causing the build to fail
1 parent 16e5760 commit 9e68500

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/fuzzer/fuzzer.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ pure fn safe_to_use_expr(e: ast::expr, tm: test_mode) -> bool {
6969
ast::expr_if(_, _, _) { false }
7070
ast::expr_if_check(_, _, _) { false }
7171
ast::expr_block(_) { false }
72-
ast::expr_alt(_, _) { false }
72+
ast::expr_alt(_, _, _) { false }
7373
ast::expr_for(_, _, _) { false }
7474
ast::expr_while(_, _) { false }
7575

0 commit comments

Comments
 (0)