mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-07 15:35:40 +07:00
GitOrigin-RevId: e1c14880358479e7c6b151f0ece7ab6cdd8ac87e
12 lines
202 B
Java
12 lines
202 B
Java
public class Test {
|
|
|
|
void test(int x) {
|
|
new Runnable() {
|
|
|
|
@Override
|
|
public void run() {
|
|
<selection>System.out.println(x);</selection>
|
|
}
|
|
};
|
|
}
|
|
} |