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