930022aaac
#KT-5294 Fixed #KT-5400 Fixed
14 lines
198 B
Java
14 lines
198 B
Java
class A {
|
|
A(Nested nested) {
|
|
}
|
|
|
|
A() {
|
|
this(new Nested(Nested.FIELD));
|
|
}
|
|
|
|
static class Nested {
|
|
Nested(int p){}
|
|
|
|
public static final int FIELD = 0;
|
|
}
|
|
} |