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

11 lines
144 B
Java

// "Make 'a.f()' not abstract" "true-preview"
interface a {
String f();
}
class b implements a {
void z() {
a.super.<caret>f();
}
}