Files
openide/java/java-tests/testData/refactoring/inlineMethod/StaticInterfaceMethod.java.after
Bas Leijdekkers f81e59d5d8 Java: correctly qualify method call when it is inlined from static interface method (IDEA-362625)
GitOrigin-RevId: 2f32664c77558fc4507a8a6ecc327f6c91b7d815
2024-11-08 13:42:36 +00:00

17 lines
284 B
Plaintext

interface AccountModule {
static void createAccount(String a, String b) {
}
String getB();
}
class UseModule implements AccountModule {
public void createSome() {
AccountModule.createAccount("", getB());
}
@Override
public String getB() {
return "";
}
}