blob: e8f67f2c23e73635cd3abc3687f430650e31e277 [file] [log] [blame]
class Test {
public static final int ID=0;
public <caret>Test() {
this(ID);
}
public Test(int id) {
}
}
class Rest {
public static void test() {
new Test();
}
}