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