mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-24 00:50:53 +07:00
10 lines
186 B
Java
10 lines
186 B
Java
// "Wrap with block" "true-preview"
|
|
class X {
|
|
void foo(int i) {
|
|
switch(i) {
|
|
case 1 ->
|
|
System.out.println("foo");
|
|
System<caret>.out.println("bar");
|
|
}
|
|
}
|
|
} |