mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-21 04:50:58 +07:00
10 lines
204 B
Java
10 lines
204 B
Java
// "Create local variable 'foo'" "true-preview"
|
|
class Foo {
|
|
String test(int i) {
|
|
return switch (i) {
|
|
default -> {
|
|
yield fo<caret>o;
|
|
}
|
|
};
|
|
}
|
|
} |