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

9 lines
131 B
Java

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