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