mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-20 03:20:56 +07:00
10 lines
198 B
Java
10 lines
198 B
Java
// "Make 'i' not final" "false"
|
|
class Main {
|
|
void foo(Object obj) {
|
|
final int i = 41;
|
|
switch (obj) {
|
|
case String s when s.length() == ++i<caret> -> {}
|
|
default -> {}
|
|
}
|
|
}
|
|
} |