hjs-0.1: testsuite/10_expressions.js
{
i=10;
i++;
if (i) {
x = i++;
} else {
x = 20;
}
do {
x++;
i = i - 1;
} while(i);
}
{
i=10;
i++;
if (i) {
x = i++;
} else {
x = 20;
}
do {
x++;
i = i - 1;
} while(i);
}