// "Remove redundant assignment" "true-preview" class Test { void foo() { String var; this.bar(var = "someString"); } void bar(String arg) { } }