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

20 lines
248 B
Java
Vendored

import 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;
}