Files
openide/java/java-tests/testData/refactoring/turnRefsToSuper/cast/after/Client.java
T
2009-09-11 18:19:26 +04:00

11 lines
155 B
Java

class Client {
I getI() { return null; };
void method() {
I a = getI();
}
int anotherMethod() {
return getI().method();
}
}