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