mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-31 19:38:50 +07:00
GitOrigin-RevId: 3e997bf39947bb3061e99f666505fee85ed792ed
8 lines
175 B
Java
8 lines
175 B
Java
class Test {
|
|
void test(boolean condition){
|
|
int x = 42;
|
|
<selection>x = 55;
|
|
if (condition) return;</selection>
|
|
System.out.println(x);
|
|
}
|
|
} |