mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 03:13:40 +07:00
moving tests
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user