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