// !LANGUAGE: +NewInference inline fun tryLambdas(lamb : () -> T) : T{ return lamb.invoke() } fun main() { tryLambdas { return@tryLambdas } }