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:
+18
@@ -0,0 +1,18 @@
|
||||
class ParentCtor {
|
||||
public static final String PARENT_CONST = "";
|
||||
|
||||
public ParentCtor(String s) {
|
||||
}
|
||||
}
|
||||
|
||||
class ChildCtor extends ParentCtor {
|
||||
public ChildCtor(boolean b) {
|
||||
super(PARENT_CONST);
|
||||
}
|
||||
}
|
||||
|
||||
class Usage {
|
||||
public void test() {
|
||||
new <caret>ChildCtor(true);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user