Files
kotlin-fork/j2k/tests/testData/ast/constructors/nestedClassNameInSuperParameters.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

15 lines
236 B
Java

class Base {
Base(Nested nested){}
static class Nested {
Nested(int p){}
public static final int FIELD = 0;
}
}
class Derived extends Base {
Derived() {
super(new Nested(Nested.FIELD));
}
}