IDEA-72951 'break' keyword is not suggested by completion in a loop with single statement body

This commit is contained in:
peter
2011-09-08 19:38:06 +02:00
parent 526adea3a6
commit a4f4d931e3
5 changed files with 69 additions and 59 deletions
@@ -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>
}
}