import kotlin.contracts.* class A { fun passLambdaValue(l: ContractBuilder.() -> Unit) { contract(l) 42 } } fun doSmth(i: String) = 4