mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-07 09:46:39 +07:00
13 lines
245 B
Java
13 lines
245 B
Java
// "Replace with old style 'switch' statement" "true"
|
|
import java.util.*;
|
|
|
|
class SwitchExpressionMigration {
|
|
int foo(int n) {
|
|
switch (n) {
|
|
case :
|
|
return 12;
|
|
default:
|
|
return 0;
|
|
}
|
|
}
|
|
} |