mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-12 21:37:00 +07:00
13 lines
251 B
Java
13 lines
251 B
Java
class Test {
|
|
public static void main(String[] args) {
|
|
if (true) {
|
|
System.out.println();
|
|
}
|
|
else <selection>if (true) {<caret>
|
|
System.out.println();
|
|
}
|
|
else if (true) {
|
|
System.out.println();
|
|
}
|
|
</selection> }
|
|
} |