Files
kotlin-fork/j2k/tests/testData/ast/constructors/nestedClassNameInParameterDefaults3.java
T
Valentin Kipyatkov 930022aaac J2K: correct conversion of nested class references
#KT-5294 Fixed
 #KT-5400 Fixed
2014-07-25 16:54:23 +04:00

22 lines
275 B
Java

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