Files
kotlin-fork/compiler/testData/ir/irText/declarations/contextReceivers/property.kt.txt
T
2023-03-23 16:23:09 +00:00

15 lines
233 B
Kotlin
Vendored

interface A {
abstract fun a(): Int
}
interface B {
abstract fun b(): Int
}
val c: Int
get($context_receiver_0: A, $context_receiver_1: B): Int {
return $context_receiver_0.a().plus(other = $context_receiver_1.b())
}