blob: e58b359991488a8800ebc5c7764c051443b5c4e7 [file] [log] [blame]
class Client {
I getI() { return null; };
void method() {
I a = getI();
}
int anotherMethod() {
return getI().method();
}
}