5 lines
155 B
Kotlin
Vendored
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()
|