Files
kotlin-fork/compiler/testData/ir/irText/expressions/extFunInvokeAsFun.kt
T

5 lines
155 B
Kotlin
Vendored

// FIR_IDENTICAL
fun with1(receiver: Any?, block: Any?.() -> Unit) = block(receiver)
fun with2(receiver: Any?, block: Any?.() -> Unit) = receiver.block()