mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-07 13:39:36 +07:00
method refs: varargs in referenced method processed (IDEA-92598)
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
class Test {
|
||||
public static void main(String... args) {}
|
||||
void test() {
|
||||
Foo foo = Test::main;
|
||||
}
|
||||
}
|
||||
|
||||
interface Foo {
|
||||
void bar();
|
||||
}
|
||||
Reference in New Issue
Block a user