mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-06 17:56:55 +07:00
GitOrigin-RevId: 5b2c6e7a16b730c1fc563b295509e1439b03fc97
14 lines
258 B
Java
14 lines
258 B
Java
class X {
|
|
void test() {
|
|
<selection>Runnable r = new Runnable() {
|
|
@Override
|
|
public void run() {
|
|
System.out.println(new Y());
|
|
}
|
|
};</selection>
|
|
r.run();
|
|
}
|
|
|
|
class Y {
|
|
}
|
|
} |