Fix last failing test

All tests now pass, without the ternary operator.
This commit is contained in:
Paul Woolcock 2012-01-29 22:58:16 -05:00 committed by Marijn Haverbeke
parent e1251f7b00
commit a02493b969
1 changed files with 9 additions and 1 deletions

View File

@ -19,7 +19,15 @@ fn zombiejesus() {
do {
while (ret) {
if (ret) {
alt (ret) { _ { if ret { ret } else { ret } } };
alt (ret) {
_ {
if (ret) {
ret
} else {
ret
}
}
};
} else if (ret) {
ret;
}