mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-22 13:45:34 +07:00
da9c5dd049
GitOrigin-RevId: 184ebf34bd15c46f54685cf06521cee1d903b056
10 lines
178 B
Java
10 lines
178 B
Java
// "Wrap with block" "true"
|
|
class X {
|
|
void foo(int i) {
|
|
switch(i) {
|
|
case 1 ->
|
|
System.out.println("foo");
|
|
System<caret>.out.println("bar");
|
|
}
|
|
}
|
|
} |