IDEA-125805 (language level increase quickfix for switch on enum/string)

This commit is contained in:
Roman Shevchenko
2014-06-02 20:14:07 +04:00
parent 75a492a4e0
commit b8be4e29d9
7 changed files with 73 additions and 67 deletions
@@ -13,7 +13,7 @@ interface A {
class D {
public static void f(A a) {
A.B b = a.getB();
switch (<error descr="A.B.C is inaccessible here">b.c</error>) {
switch (<error descr="'A.B.C' is inaccessible here">b.c</error>) {
case SOME:
break;
}