1 class InlineMethodTest
{
2 public static InlineMethodTest
createInstance() {
3 return new InlineMethodTest(0);
6 protected <caret
>InlineMethodTest(int y
) {
7 this("hello world", y
);
10 protected InlineMethodTest() {
14 public InlineMethodTest(String text
, int i
) {
18 class Derived
extends InlineMethodTest
{
19 public Derived(int i
) {