mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-03 15:50:52 +07:00
14 lines
250 B
Java
14 lines
250 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 = anonymou<caret>s;
|
|
}
|
|
} |