mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-23 16:20:55 +07:00
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 {
|
|
}
|
|
} |