mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-17 20:11:25 +07:00
varargs (IDEA-92641)
This commit is contained in:
@@ -7,4 +7,16 @@ class Test {
|
||||
|
||||
interface Foo {
|
||||
void bar();
|
||||
}
|
||||
|
||||
class Test1 {
|
||||
public static void main(String... args) {}
|
||||
|
||||
void test() {
|
||||
Foo1 foo = Test1::main;
|
||||
}
|
||||
}
|
||||
|
||||
interface Foo1 {
|
||||
void bar(String... s);
|
||||
}
|
||||
Reference in New Issue
Block a user