blob: b33fe6eebd029e937092425e5d1a7bfbc49f99ca [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][];
}
}