blob: 5fedf26c03a44d51ddf9f4ab2f31041628f60cb6 [file] [log] [blame]
import java.io.IOException;
interface Callable<V> {
V call() throws Exception;
}
class Test2 {
static <V> void m(Callable<V> c){}
{
m(() -> {throw new IOException();});
}
}