mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
highlight sibling continue/break (IDEA-117109)
This commit is contained in:
@@ -1,7 +1,13 @@
|
||||
class Main {
|
||||
public static void main(String[] args) {
|
||||
do {
|
||||
if (true) br<caret>eak;
|
||||
} while (args != null);
|
||||
lbl:
|
||||
while (true) {
|
||||
int i = 0;
|
||||
do {
|
||||
if (i++ > 7) br<caret>eak;
|
||||
if (i % 2 == 0) continue;
|
||||
if (--i > 8) continue lbl;
|
||||
} while (args != null);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user