mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-23 20:05:01 +07:00
GitOrigin-RevId: ae0e486ae2e701c92888851b493f484033e7d5bd
8 lines
137 B
Java
8 lines
137 B
Java
// "Make 'Interface.f()' static" "false"
|
|
abstract interface Interface {
|
|
int f();
|
|
|
|
static void y() {
|
|
<caret>f(); // <- Error
|
|
}
|
|
} |