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