mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
14 lines
248 B
Java
14 lines
248 B
Java
// "Qualify super expression with 'Super'" "true-preview"
|
|
interface Super
|
|
{
|
|
default void method()
|
|
{
|
|
System.out.println("Super.method()");
|
|
}
|
|
}
|
|
|
|
class Sub implements Super {
|
|
void foo() {
|
|
Super.super.method();
|
|
}
|
|
} |