Files
kotlin/compiler/testData/codegen/box/multiDecl/SimpleValsExtensions.kt

10 lines
171 B
Kotlin
Vendored

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