[java] drops value break keyword completion

GitOrigin-RevId: b713ae661f06245ae400d6aa20ec14d2fa2f20ef
This commit is contained in:
Roman Shevchenko
2019-07-05 01:10:36 +03:00
committed by intellij-monorepo-bot
parent 60e3e2280b
commit 1baaa93702
4 changed files with 28 additions and 7 deletions
@@ -0,0 +1,12 @@
class BreakDeepInsideSwitchExpression {
int test(int i) {
return switch (i) {
default -> {
while (true) {
if (--i < 8) br<caret>
}
yield i;
};
};
}
}