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

9 lines
179 B
Java

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