overload resolution: detect qualifier of unqualified call by processDeclaration's source where candidate was found

conflict resolution for static methods of the interface found by inheritance and nesting

GitOrigin-RevId: b637b02de4f59010a138c66890d1efcbcd1d588d
This commit is contained in:
Anna Kozlova
2019-10-30 22:14:46 +01:00
committed by intellij-monorepo-bot
parent 25053f075f
commit 856ec460c6
2 changed files with 18 additions and 17 deletions

View File

@@ -66,4 +66,14 @@ class StaticMethodInterfaceExample2 {
}
}
}
}
interface StaticMethodInterfaceExample3 {
static void m() { }
class MyClass implements StaticMethodInterfaceExample3 {
{
m();
}
}
}