Files
kotlin-fork/compiler/testData/ir/irText/expressions/extFunInvokeAsFun.kt
T
2017-05-04 09:33:03 +03:00

4 lines
159 B
Kotlin
Vendored

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