Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/lambda/methodRef/Varargs1.java
2012-10-09 17:54:33 +02:00

22 lines
318 B
Java

class Test {
public static void main(String... args) {}
void test() {
Foo foo = Test::main;
}
}
interface Foo {
void bar();
}
class Test1 {
public static void main(String... args) {}
void test() {
Foo1 foo = Test1::main;
}
}
interface Foo1 {
void bar(String... s);
}