mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
IDEA-25267 Smart Completion after continue&break should filter labels
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
public class Util {
|
||||
void foo(int labInt) {
|
||||
label:
|
||||
while (true) {
|
||||
break label;<caret>
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
public class Util {
|
||||
void foo(int labInt) {
|
||||
label:
|
||||
while (true) {
|
||||
break l<caret>
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user