Files
kotlin-fork/compiler/testData/codegen/script/destructuringDeclarationUnderscore.kts
2023-12-26 10:18:19 +00:00

11 lines
272 B
Kotlin
Vendored

// JVM_ABI_K1_K2_DIFF: KT-63960, KT-63968, KT-63967, KT-63963
val (_, b, _) = A()
class A {
operator fun component1(): Int = throw RuntimeException()
operator fun component2() = 2
operator fun component3(): Int = throw RuntimeException()
}
// expected: b: 2