mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-26 03:51:12 +07:00
Likely, regression after IDEA-278622 GitOrigin-RevId: cc77068631608e388e95cb4f103b3d8155aa58e9
11 lines
176 B
Java
11 lines
176 B
Java
class Foo {
|
|
public int foo(String str) {
|
|
return switch (str) {
|
|
case MyCons<caret>
|
|
};
|
|
}
|
|
}
|
|
|
|
class MyConstants {
|
|
public static final String STRING_ONE = "1";
|
|
} |