overload resolution: accept unqualified calls of static interface methods (IDEA-180236)

This commit is contained in:
Anna.Kozlova
2017-10-09 11:43:59 +02:00
parent 60cede53c1
commit 14cb19fa39
3 changed files with 19 additions and 5 deletions

View File

@@ -0,0 +1,15 @@
interface Test {
final class Inner {
void func() {
of("");
of();
of("", "");
}
}
static void of(String... lists) { }
}