Fix use of expr_alt in fuzzer that was causing the build to fail

This commit is contained in:
Marijn Haverbeke 2012-02-15 12:01:09 +01:00
parent 16e5760564
commit 9e685005d4

View file

@ -69,7 +69,7 @@ pure fn safe_to_use_expr(e: ast::expr, tm: test_mode) -> bool {
ast::expr_if(_, _, _) { false }
ast::expr_if_check(_, _, _) { false }
ast::expr_block(_) { false }
ast::expr_alt(_, _) { false }
ast::expr_alt(_, _, _) { false }
ast::expr_for(_, _, _) { false }
ast::expr_while(_, _) { false }