bd742bb95c
^KT-54084 Fixed
16 lines
182 B
Plaintext
Vendored
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())
|
|
}
|
|
|