blob: 3f8cc778c66ed2e2d068fcf9a8b8e098bac6aaee [file] [log] [blame]
class Mapping {
private int myInt;
private Mapping myField;
public void <caret>method() {
myInt = hashCode();
}
public void context() {
myInt = myField.hashCode();
}
}