4 lines
159 B
Kotlin
Vendored
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() |