mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-22 06:20:54 +07:00
8 lines
157 B
Java
8 lines
157 B
Java
// "Unwrap 'switch'" "true-preview"
|
|
public class One {
|
|
void f1(String a) {
|
|
sw<caret>itch (a) {
|
|
default -> System.out.println("None");
|
|
}
|
|
}
|
|
} |