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

8 lines
166 B
Java

// "Create local variable 'foo'" "true-preview"
class Foo {
String test(int i) {
return switch (i) {
default -> fo<caret>o;
};
}
}