
public class C extends pkg.A {
    void xxx() {
	new B("hiya") {};
    }
    public static void main(String[] args) {
	new C().xxx();
    }
}
