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(receiver = 42, block = local fun Int.(): Int { return foo($context_receiver_0 = $this$with) } ) /*~> Unit */ }