blob: 58b16bc567e84c4d0d0c8dcd42d09c99d5bd30a4 [file] [log] [blame]
class InlineMethodTest {
public static InlineMethodTest createInstance() {
return new InlineMethodTest(0);
}
protected <caret>InlineMethodTest(int y) {
this("hello world", y);
}
protected InlineMethodTest() {
this(0);
}
public InlineMethodTest(String text, int i) {
}
}
class Derived extends InlineMethodTest {
public Derived(int i) {
super(i);
}
}