Files
2022-07-27 10:00:37 +00:00

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;
}
};
}
}