Files
2022-08-22 17:58:06 +00:00

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();
}
}