mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-02 19:28:23 +07:00
10 lines
124 B
Java
10 lines
124 B
Java
// "Make 'foo' static" "true"
|
|
abstract class F {
|
|
abstract void foo();
|
|
}
|
|
|
|
class B {
|
|
{
|
|
F.f<caret>oo();
|
|
}
|
|
} |