mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 15:50:53 +07:00
13 lines
216 B
Java
13 lines
216 B
Java
class Test {
|
|
|
|
public void test(boolean b) {
|
|
int a = 1;
|
|
if (true) {
|
|
System.out.println(a);
|
|
} else {
|
|
<selection>System.out.println(a);</selection>
|
|
}
|
|
}
|
|
|
|
|
|
} |