blob: 7595ec2001114a1c68244bc2d565740bc59aa77b [file] [log] [blame]
package p;
public class VarArgsCtor_in {
public void foo() {
Cell c= Cell.createCell("", "");
}
}
class Cell {
public static Cell createCell(String... args) {
return new Cell(args);
}
private /*[*/Cell/*]*/(String ... args) { }
}