mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-24 09:20:53 +07:00
overload resolution: accept unqualified calls of static interface methods (IDEA-180236)
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
interface Test {
|
||||
|
||||
final class Inner {
|
||||
|
||||
void func() {
|
||||
of("");
|
||||
of();
|
||||
of("", "");
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
static void of(String... lists) { }
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user