Files
kotlin-fork/backend.native/tests/external/codegen/box/multiDecl/SimpleVals.kt
T
2017-03-13 15:31:46 +03:00

10 lines
175 B
Kotlin

class A {
operator fun component1() = 1
operator fun component2() = 2
}
fun box() : String {
val (a, b) = A()
return if (a == 1 && b == 2) "OK" else "fail"
}