blob: dc4189ab04b7985a94ca7f3bcafefec73b7690e3 [file] [log] [blame]
class Mapping1 {
private int myInt;
public void method() {
int i = myInt;
}
public void context() {
method();
}
}
class Mapping2 {
private int myInt;
public void context() {
int i = myInt;
}
}