blob: a3d238b2d31abbc6ca97744b4a4f264f495d41be [file] [log] [blame]
package simple_out;
public class TestTypeArray {
public void main() {
TestTypeArray[][] x = null;
x= new TestTypeArray[10][];
}
public void foo(TestTypeArray[][] x) {
x= new TestTypeArray[10][];
}
}