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

10 lines
179 B
Text

/* Test access an array on a null pointer */
class Main {
void main() {
int[] x;
x = null;
x[1] = 5; //this should throw null pointer exception
}
}