Files
kotlin-fork/compiler/testData/ir/irText/destructuring1.kt
T
Dmitry Petrov 37cce98d19 Simplify IrElement hierarchy.
IrDeclaration can be now hosted under IrExpression (as IrStatement).
2016-10-18 09:08:04 +03:00

10 lines
157 B
Kotlin
Vendored

object A
object B {
operator fun A.component1() = 1
operator fun A.component2() = 2
}
fun B.test() { // <<< destructuring1.txt
val (x, y) = A
}