f0d8a1cbe9
^KT-60518
10 lines
172 B
Kotlin
10 lines
172 B
Kotlin
import kotlin.contracts.*
|
|
|
|
class A {
|
|
fun passLambdaValue(l: ContractBuilder.() -> Unit) {
|
|
contract(l)
|
|
<expr>42</expr>
|
|
}
|
|
}
|
|
|
|
fun doSmth(i: String) = 4 |