blob: 078a3806b25ecb7f1ca1e3fe6d762a869720018c [file] [log] [blame]
class Mapping {
private int myInt;
public void method(int p) {
myInt = p + 1;
}
public void context1() {
method(myInt);
}
public void context2() {
method(this.myInt);
}
}