mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-06 23:52:27 +07:00
GitOrigin-RevId: 0cf0aa8d5875e2bc52dfaa96c1259ccb314bbd96
14 lines
198 B
Java
14 lines
198 B
Java
class Test {
|
|
void test() {
|
|
<selection>int x = 42;</selection>
|
|
System.out.println(x);
|
|
}
|
|
|
|
int getX(){
|
|
return 0;
|
|
}
|
|
|
|
int getAnInt(){
|
|
return 0;
|
|
}
|
|
} |