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

13 lines
188 B
Java

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