blob: a4bd7971cedb87940b8ee567280ecd346dafd543 [file] [log] [blame]
class Return {
private int myInt;
public Return method() {
myInt++;
return this;
}
public void context() {
Return r = method();
// Currently the statement below could be replaced, but it's not. Nobody has requested this.
myInt++;
}
}