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