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