mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-24 14:12:44 +07:00
24d1d27b1e
GitOrigin-RevId: f4e396ddc90d66790db044525611c536c3f620fa
9 lines
173 B
Java
9 lines
173 B
Java
// "Create local variable 'foo'" "true"
|
|
class Foo {
|
|
int x = foo ? 0 : switch(1) {
|
|
default -> {
|
|
boolean foo;
|
|
yield foo;
|
|
}
|
|
};
|
|
} |