mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-02-12 18:36:52 +07:00
11 lines
134 B
Java
11 lines
134 B
Java
// "Make 'a.f' not abstract" "true"
|
|
interface a {
|
|
String f();
|
|
}
|
|
class b implements a {
|
|
void z() {
|
|
a.super.<caret>f();
|
|
}
|
|
}
|
|
|