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