mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-24 14:12:44 +07:00
24d1d27b1e
GitOrigin-RevId: f4e396ddc90d66790db044525611c536c3f620fa
10 lines
196 B
Java
10 lines
196 B
Java
// "Create local variable 'foo'" "true"
|
|
class Foo {
|
|
String test(int i) {
|
|
return switch (i) {
|
|
default -> {
|
|
yield fo<caret>o;
|
|
}
|
|
};
|
|
}
|
|
} |