mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-19 18:50:59 +07:00
7 lines
268 B
Java
7 lines
268 B
Java
import static p.Foo.FooEx.<error descr="Static method may be invoked on containing interface class only">foo</error>;
|
|
|
|
class FooImpl {
|
|
public void baz() {
|
|
<error descr="Static method may be invoked on containing interface class only">foo();</error>
|
|
}
|
|
} |