compiler-design-eth/javali_tests/HW3/ErrIfCondition.javali

12 lines
185 B
Text
Raw Normal View History

2020-01-15 22:32:25 +01:00
/* Test that if conditions must be boolean */
class Main {
void main() {
if (84 / 2) {
write(1);
writeln();
}
write(2);
writeln();
}
}