mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-24 16:48:29 +07:00
9addc5eaf7
GitOrigin-RevId: 1cfc8afb26b5db175d865f6bbdc752356040d8bb
11 lines
144 B
Java
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();
|
|
}
|
|
}
|
|
|