mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-06 08:00:18 +07:00
GitOrigin-RevId: 3eba22a8685ecb6905a867ff68b9f96f7438140d
8 lines
172 B
Java
8 lines
172 B
Java
class X {
|
|
Runnable r = new Runnable() {
|
|
@Override
|
|
public void run() {
|
|
<selection>System.out.println("hello");</selection>
|
|
}
|
|
};
|
|
} |