Files
kotlin-fork/nj2k/testData/newJ2k/constructors/nestedClassNameInParameterDefaults.java
T
2019-04-03 11:24:19 +03:00

14 lines
198 B
Java
Vendored

class A {
A(Nested nested) {
}
A() {
this(new Nested(Nested.FIELD));
}
static class Nested {
Nested(int p){}
public static final int FIELD = 0;
}
}