Files
Mikhail Pyltsinandintellij-monorepo-bot a6ea6ed644 [java-inspections] IJ-CR-125834 EA-1063946 more filters for yield statements
- more tests

GitOrigin-RevId: 83b0ffbbeb982d269a8fc0333e6d7cf6799d1c1b
2024-03-19 20:39:36 +00:00

17 lines
319 B
Java

// "Replace with 'switch' expression" "false"
import java.util.*;
class Switch {
void test(Integer o) {
String s = "";
s<caret>witch (o) {
case 1:
s = "";
break;
default:
System.out.println("1");
s = o.toString(), o.toString();
break;
} ;
}
}