mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-03 20:33:31 +07:00
IJ-CR-95276 IDEA-301356 GitOrigin-RevId: 7281c53c12f40840de36cc8d7e0c18e20ae8c463
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 -> {}
|
|
}
|
|
}
|
|
} |