compiler-design-eth/javali_tests/HW4_nop90/Array/ErrArrayIndex2.javali
Carlos Galindo 72cc3206c4
Homework 4
2020-01-15 22:34:57 +01:00

9 lines
160 B
Text

/* Test accessing arrays with invalid index*/
class Main {
void main() {
int[] x;
x = new int[5];
x[8] = 5; //this should fail
}
}