blob: ba341f1b7489c72a69a56ee79bef45750b7a3bc9 [file] [log] [blame]
class Test {
public Test() {
this(Const.CONST);
}
public Test(int l) {}
private class Const {
private static final int CONST = 42;
}
}