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

9 lines
119 B
Java

// "Create local variable 'a'" "true-preview"
class C {
void foo() {
(s) -> {
Object a = s;
};
}
}