mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-10 09:39:37 +07:00
15 lines
192 B
Java
15 lines
192 B
Java
// "Remove redundant assignment" "true"
|
|
class A {
|
|
A a = null;
|
|
String m(String str) {
|
|
return str;
|
|
}
|
|
|
|
{
|
|
String ss = "";
|
|
|
|
System.out.println();
|
|
|
|
s<caret>s = a.m(ss);
|
|
}
|
|
} |