Files
2022-07-29 17:55:14 +00:00

8 lines
108 B
Java

// "Remove redundant assignment" "true-preview"
class A {
{
String ss = "";
s<caret>s = ss;
}
}