mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 14:23:28 +07:00
23 lines
425 B
Java
23 lines
425 B
Java
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);
|
|
}
|
|
}
|