Files
kotlin-fork/compiler/testData/ir/irText/declarations/contextReceivers/property.kt.txt
T
2022-09-28 18:59:56 +04:00

16 lines
182 B
Plaintext
Vendored

interface A {
abstract fun a(): Int
}
interface B {
abstract fun b(): Int
}
val c: Int
get(<this>: A, <this>: B): Int {
return <this>.a().plus(other = <this>.b())
}