Files
kotlin-fork/compiler/testData/ir/irText/expressions/extFunInvokeAsFun.kt
T
2020-12-18 12:17:21 +03:00

5 lines
176 B
Kotlin
Vendored

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