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

8 lines
120 B
Java

// "Create local variable 'x'" "true-preview"
class X {
void m(String s) {}
{
m(x);
<caret>x.doSmth();
}
}