mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-22 14:50:53 +07:00
15 lines
227 B
Java
15 lines
227 B
Java
|
|
class A {
|
|
private String prefix = "> ";
|
|
|
|
void f<caret>oo() {
|
|
Runnable runnable = new Runnable() {
|
|
@Override
|
|
public void run() {
|
|
System.out.println(prefix);
|
|
}
|
|
};
|
|
}
|
|
}
|
|
|
|
class B extends A {} |