IDEA-80186 Completion for 'continue' always inserts semicolon

This commit is contained in:
peter
2012-01-24 13:33:39 +01:00
parent 134ef93313
commit 2dd04b9c01
5 changed files with 30 additions and 9 deletions
@@ -0,0 +1,7 @@
public class Util {
void foo(int a, int b) {
Outer: for (int i = 0; i < 239; i++) {
conti<caret>
}
}
}