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

9 lines
181 B
Java

// "Create local variable 'foo'" "true-preview"
class Foo {
int x = foo ? 0 : switch(1) {
default -> {
boolean foo;
yield foo;
}
};
}