11 lines
No EOL
139 B
Text
11 lines
No EOL
139 B
Text
/* Test creating arrays of objects */
|
|
|
|
class A{}
|
|
|
|
class Main {
|
|
void main() {
|
|
A[] x;
|
|
x = new A[2];
|
|
x[0] = new A();
|
|
}
|
|
} |