mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-03 07:20:55 +07:00
11 lines
154 B
Java
11 lines
154 B
Java
class Test {
|
|
public Test() {
|
|
this(Const.CONST);
|
|
}
|
|
|
|
public Test(int l) {}
|
|
|
|
private class Const {
|
|
private static final int CONST = 42;
|
|
}
|
|
} |