Files
kotlin-fork/compiler/testData/ir/irText/declarations/contextReceivers/property.fir.kt.txt
T
2022-04-06 16:05:40 +00:00

15 lines
233 B
Plaintext
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())
}