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