Files

10 lines
156 B
Java

class Test {
public static final int xxx = 10;
public Test() {
this(xxx);
}
public Test(final int i) {
}
}