mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-28 23:50:57 +07:00
14 lines
547 B
Java
14 lines
547 B
Java
class Test {
|
|
interface I {
|
|
<error descr="Extension methods are not supported at language level '7'">static void foo() {}</error>
|
|
}
|
|
|
|
abstract static class IImpl implements I {}
|
|
interface I2 extends I {}
|
|
|
|
{
|
|
I.<error descr="Static interface method calls are not supported at language level '7'">foo</error>();
|
|
IImpl.<error descr="Static interface method calls are not supported at language level '7'">foo</error>();
|
|
I2.<error descr="Static interface method calls are not supported at language level '7'">foo</error>();
|
|
}
|
|
} |