compiler-design-eth/javali_tests/HW4_nop90/Array/OkArrayAccess2.javali

15 lines
222 B
Text
Raw Permalink Normal View History

2020-01-15 22:34:57 +01:00
/* Test creating arrays of objects and accessing a null element*/
class A{}
class Main {
void main() {
A[] x;
A a;
x = new A[3];
x[1] = new A();
x[2] = a;
x[2] = new A();
}
}