mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
16 lines
207 B
Java
16 lines
207 B
Java
class Test {
|
|
public static final int ID=0;
|
|
|
|
public <caret>Test() {
|
|
this(ID);
|
|
}
|
|
|
|
public Test(int id) {
|
|
}
|
|
}
|
|
|
|
class Rest {
|
|
public static void test() {
|
|
new Test();
|
|
}
|
|
} |