blob: b235d8a50d840387d8339cd1c63c0abb0336b7ab [file] [log] [blame]
class Mapping {
private int myInt;
public void <caret>method() {
int contextVar = 1;
myInt += contextVar + 1;
}
public void context() {
int contextVar = 1;
myInt += contextVar;
}
}