Files
openide/java/java-tests/testData/refactoring/inlineMethod/ChainingConstructor.java
Dmitry Jemerov b43c03ca2f moving tests
2009-09-10 19:49:38 +04:00

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);
}
}