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

14 lines
197 B
Java

// "Create local variable 'a'" "true-preview"
class C {
C builder() {
return this;
}
void foo() {
String a;
builder().a(a).intValue();
}
Integer a(String s) {}
}