mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-22 14:50:53 +07:00
8 lines
136 B
Java
8 lines
136 B
Java
// "Implement method 'foo'" "false"
|
|
abstract class Test {
|
|
abstract void f<caret>oo();
|
|
}
|
|
|
|
class TImple extends Test {
|
|
void foo() {}
|
|
} |