blob: 724a559ce9b66a930305b03643457e8040d3028e [file] [log] [blame]
package p8;
/* Regression test case for bug 44506 Type hierarchy is missing anonymous type*/
public class X {
X(String s) {
}
protected void foo() {
new X("") {
};
}
}