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

22 lines
275 B
Java
Vendored

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