mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-17 21:43:33 +07:00
[java] drops value break keyword completion
GitOrigin-RevId: b713ae661f06245ae400d6aa20ec14d2fa2f20ef
This commit is contained in:
committed by
intellij-monorepo-bot
parent
60e3e2280b
commit
1baaa93702
+12
@@ -0,0 +1,12 @@
|
||||
class BreakDeepInsideSwitchExpression {
|
||||
int test(int i) {
|
||||
return switch (i) {
|
||||
default -> {
|
||||
while (true) {
|
||||
if (--i < 8) br<caret>
|
||||
}
|
||||
yield i;
|
||||
};
|
||||
};
|
||||
}
|
||||
}
|
||||
+12
@@ -0,0 +1,12 @@
|
||||
class BreakDeepInsideSwitchExpression {
|
||||
int test(int i) {
|
||||
return switch (i) {
|
||||
default -> {
|
||||
while (true) {
|
||||
if (--i < 8) break;
|
||||
}
|
||||
yield i;
|
||||
};
|
||||
};
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user