mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-24 00:50:53 +07:00
9 lines
179 B
Java
9 lines
179 B
Java
// "Create local variable 'foo'" "true-preview"
|
|
class Foo {
|
|
String test(int i) {
|
|
String foo;
|
|
return switch (i) {
|
|
default -> foo;
|
|
};
|
|
}
|
|
} |