blob: 1d77c7568b8c145f717c7dacc6f8ac6521e05551 [file] [log] [blame]
package simple_in;
public class TestConstructor2 {
private Object object;
public TestConstructor2(Object o) {
object= o;
}
public TestConstructor2(Object o, int i) {
this(o);
}
}