blob: 8df38c124d674f642ff045fe3cfbdccf9b695f44 [file] [log] [blame]
class Test {
private String myStr;
public Test setStr(String str) {
myStr = str;
return this;
}
public static void main(String[] args) {
final Test test = new Test();
test.setStr("");
}
}