mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-07 13:39:36 +07:00
14 lines
239 B
Java
14 lines
239 B
Java
class Foo {
|
|
void test() {
|
|
int a = 2;
|
|
int b = 2;
|
|
|
|
<selection>if (a == b) {
|
|
if (a > b) {
|
|
System.out.println();
|
|
}
|
|
}</selection>
|
|
|
|
System.out.println();
|
|
}
|
|
} |