mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-03 07:20:55 +07:00
11 lines
268 B
Java
11 lines
268 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="Callable<T>[] is not a functional interface">() -> null</error>);
|
|
}
|
|
}
|