mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-02-15 23:06:53 +07:00
11 lines
217 B
Java
11 lines
217 B
Java
// "Create local variable 'foo'" "true"
|
|
class Foo {
|
|
String test(int i) {
|
|
return switch (i) {
|
|
default -> {
|
|
String foo;
|
|
yield foo;
|
|
}
|
|
};
|
|
}
|
|
} |