mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-27 05:20:54 +07:00
11 lines
186 B
Java
11 lines
186 B
Java
// "Qualify super expression with 'Super'" "false"
|
|
interface Super
|
|
{
|
|
void method();
|
|
}
|
|
|
|
interface Sub extends Super {
|
|
default void foo() {
|
|
<caret>super.method();
|
|
}
|
|
} |