IDEA-119364 (not introduces case statements for enum)

This commit is contained in:
Dmitry Batkovich
2014-06-03 15:59:48 +04:00
parent 673d730ba8
commit 6847fc37ad
16 changed files with 312 additions and 0 deletions
@@ -0,0 +1,12 @@
class X {
void m() {
String s = getStr();
switch (s) {
<caret>
}
}
}