blob: 205e3f136b281c71380a50fd51e891a9f4d575f3 [file] [log] [blame]
package p1;
import static p2.Statics.PUB_CONST;
public class Usage {
public void test() {
Object i = new Object() {
public int myInt = PUB_CONST;
};
}
}