mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 15:50:53 +07:00
Fixes EA-215007 - [ExtractVar] REWA: VariableExtractor.ensureCodeBlock GitOrigin-RevId: 565611ad29a3ffa42932a1c4e84b7528af26e620
10 lines
181 B
Java
10 lines
181 B
Java
public class Main {
|
|
public void test(String msg) {
|
|
switch (msg) {
|
|
case "foo" -> {
|
|
String ba = "ba";
|
|
System.out.println(ba + "r");
|
|
}
|
|
}
|
|
}
|
|
} |