blob: 117f08a479f13da8ff38e21ae7cc8019c792342c [file] [log] [blame]
public class TestClass {
public TestClass() {
}
public TestClass(int i) {
}
public static void main(String[] args) {
TestClass t= /*[*/new TestClass()/*]*/;
TestClass t1= new TestClass(10);
}
}