mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-25 02:21:17 +07:00
13 lines
167 B
Java
13 lines
167 B
Java
// "Make 'X.foo()' not abstract" "true-preview"
|
|
|
|
abstract class X {
|
|
void foo() {
|
|
<caret>
|
|
}
|
|
}
|
|
|
|
class Y extends X {
|
|
void foo() {
|
|
super.foo();
|
|
}
|
|
} |