blob: 6ef1870458fbfc0c762d00fad44f91221010db65 [file] [log] [blame]
// "Remove redundant assignment" "true"
class Test {
void foo() {
String var;
this.bar("someString");
}
void bar(String arg) {
}
}