mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-09 15:41:26 +07:00
IDEA-72951 'break' keyword is not suggested by completion in a loop with single statement body
This commit is contained in:
@@ -0,0 +1,6 @@
|
||||
public class Main {
|
||||
{
|
||||
while(true)
|
||||
if (cond) br<caret>
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
public class Main {
|
||||
{
|
||||
while(true)
|
||||
if (cond) break;<caret>
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user