blob: d412555a30f703475f98a1264e193a4d1d336baf [file] [log] [blame]
// "Make 'null' implement 'Foo.IBar'" "false"
public abstract class Foo {
static Foo anonymous = new Foo() {
@Override
void fooMethod() {
foo2Method(th<caret>is);
}
};
protected Foo() {
IBar bar = anonymous;
}
}