mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-28 06:51:01 +07:00
14 lines
243 B
Java
14 lines
243 B
Java
// "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;
|
|
}
|
|
} |