mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-06-18 23:11:44 +07:00
bc9a1a4ba2
GitOrigin-RevId: 59f8fe15c8ca883f02f968ac08a5aa490d4686b2
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();
|
|
}
|
|
} |