IDEA-155309 Complete statement does not work for default in switch

This commit is contained in:
peter
2016-05-02 08:58:54 +02:00
parent a19579a8d1
commit b7623be04f
5 changed files with 25 additions and 6 deletions
@@ -0,0 +1,8 @@
class Foo {
void foo(String a) {
switch (a) {
default<caret>
}
}
}
@@ -0,0 +1,9 @@
class Foo {
void foo(String a) {
switch (a) {
default:
<caret>
}
}
}