compiler-design-eth/javali_tests/HW2/ErrWhileMissingBrace.javali

11 lines
208 B
Text
Raw Normal View History

2020-01-15 22:30:09 +01:00
class Main {
void main() {
int i;
// Note: In Javali, while() loops must have braces ({}) after them,
// so this is an expected syntax error.
while(true)
i = 1;
}
}