mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-24 08:41:46 +07:00
87deef960c
GitOrigin-RevId: 17a2f1f62f7703930aa25a8cfd6dfd4a918e1fe7
11 lines
325 B
Java
11 lines
325 B
Java
|
|
import java.util.concurrent.Callable;
|
|
|
|
class Test {
|
|
public static <T> void execute(Callable<T>[] cmds) { }
|
|
|
|
public static void main(String[] args) throws Exception{
|
|
execute<error descr="'execute(java.util.concurrent.Callable<T>[])' in 'Test' cannot be applied to '(<lambda expression>)'">(() -> null)</error>;
|
|
}
|
|
}
|