mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-18 22:42:49 +07:00
ab14666e4e
GitOrigin-RevId: 72f8e7f6c9080db7cb0b89c0ed876eb949171e8f
8 lines
146 B
Java
8 lines
146 B
Java
// "Unwrap 'switch'" "true-preview"
|
|
class Test {
|
|
void foo(Object obj) {
|
|
int answer = sw<caret>itch (obj) {
|
|
default -> 42;
|
|
};
|
|
}
|
|
} |