blob: 12c5332362d6fe4846b477d8380789fcd9d6b052 [file] [log] [blame]
public class Test {
public Test(Object a) {
}
public Test(int i) {
this(new Integer(i));
}
public Test(long l) {
this(new Long(l));
}
}