blob: 13c194022f6b2def40521a29c93cd9018b74ef23 [file] [log] [blame]
package pack;
import static pack.A.*;
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;
}