blob: 6bc974bd22cd95e0189081dfd7db1008eed97800 [file] [log] [blame]
class Test {
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.getI());
}
}