mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-20 20:20:56 +07:00
13 lines
174 B
Java
13 lines
174 B
Java
// "Make 'a.f()' not abstract" "true-preview"
|
|
interface a {
|
|
default String f() {
|
|
return null;
|
|
}
|
|
}
|
|
class b implements a {
|
|
void z() {
|
|
a.super.f();
|
|
}
|
|
}
|
|
|