blob: c10b9b746a91f92dbf889e0e31bb999b72bc95f4 [file] [log] [blame]
class Mapping {
private int myInt;
public void <caret>method() {
this.myInt++;
Mapping.this.myInt--;
myInt += hashCode();
}
public void context() {
myInt++;
this.myInt--;
myInt += hashCode();
}
}