blob: c490c9420bd2862981dd86e6211e59e627c7bc0a [file] [log] [blame]
class Return {
private Return myReturn;
private int myInt;
public Return <caret>method() {
Return r = new Return();
r.myInt >>= 1;
return r;
}
public void contextLValue() {
Return r = new Return();
r.myInt >>= 1;
r = null;
}
public void contextNoUsage() {
Return r = new Return();
r.myInt >>= 1;
}
public void contextRValue() {
Return r = new Return();
r.myInt >>= 1;
Return r2 = r;
}
}