5824b9c59c
27 failing tests are muted
11 lines
239 B
Kotlin
Vendored
11 lines
239 B
Kotlin
Vendored
// IGNORE_BACKEND_K2: JVM_IR
|
|
|
|
val (_, b, _) = A()
|
|
|
|
class A {
|
|
operator fun component1(): Int = throw RuntimeException()
|
|
operator fun component2() = 2
|
|
operator fun component3(): Int = throw RuntimeException()
|
|
}
|
|
|
|
// expected: b: 2 |