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

15 lines
236 B
Java
Vendored

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