mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-18 22:42:49 +07:00
4b9af8fc7b
GitOrigin-RevId: a76e34111f7a733071d2397e0a9c0a0a4d51d175
9 lines
202 B
Java
9 lines
202 B
Java
// "Unwrap 'switch'" "true-preview"
|
|
class X {
|
|
void test(int i) {
|
|
int x;
|
|
<caret>switch ("1" + (x= ((--i/*text*/) + "1" + (++i) + "1"))) {
|
|
default -> System.out.println("1");
|
|
};
|
|
}
|
|
} |