e6f4d6e6fa
^KT-65406
16 lines
368 B
Kotlin
Vendored
16 lines
368 B
Kotlin
Vendored
fun foo($context_receiver_0: Int): Int {
|
|
return $context_receiver_0.plus(other = 42)
|
|
}
|
|
|
|
fun foo($context_receiver_0: Int, $context_receiver_1: String): Int {
|
|
return $context_receiver_0.plus(other = 42)
|
|
}
|
|
|
|
fun test() {
|
|
with<Int, Int>(receiver = 42, block = local fun Int.<anonymous>(): Int {
|
|
return foo($context_receiver_0 = $this$with)
|
|
}
|
|
) /*~> Unit */
|
|
}
|
|
|