blob: b1285f5c827501d5c1185e40f36f7265de87fb13 [file] [log] [blame]
class Mapping1 {
private int myInt;
public void method() {
Object o = this;
}
public void context() {
method();
}
}
class Mapping2 {
private int myInt;
public void context() {
Object o = this;
}
}