ceeccfa1b7
IrGetBackingField / IrSetBackingField expressions.
10 lines
131 B
Kotlin
Vendored
10 lines
131 B
Kotlin
Vendored
object A
|
|
|
|
object B {
|
|
operator fun A.component1() = 1
|
|
operator fun A.component2() = 2
|
|
}
|
|
|
|
fun B.test() {
|
|
val (x, y) = A
|
|
} |