blob: ce9537b963ac2609eeac724a79084c7769f92bb4 [file] [log] [blame]
class Test {
public int i;
public int getI() { return i; }
int method(int a, int anObject) {
return anObject;
}
}
class XXX {
public int m() {
Test t;
return t.method(1, 1 + t.i);
}
}