compiler-design-eth/javali_tests/HW2/ErrWhileMissingBrace.javali
Carlos Galindo bf60a078d7
Homework 2
2020-01-15 22:30:09 +01:00

10 lines
208 B
Text

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;
}
}