mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 14:23:28 +07:00
13 lines
209 B
Plaintext
13 lines
209 B
Plaintext
class ParentCtor {
|
|
public static final String PARENT_CONST = "";
|
|
|
|
public ParentCtor(String s) {
|
|
}
|
|
}
|
|
|
|
class Usage {
|
|
public void test() {
|
|
new ParentCtor(ParentCtor.PARENT_CONST);
|
|
}
|
|
}
|