10 lines
210 B
Kotlin
Vendored
10 lines
210 B
Kotlin
Vendored
|
|
val (_, b, _) = A()
|
|
|
|
class A {
|
|
operator fun component1(): Int = throw RuntimeException()
|
|
operator fun component2() = 2
|
|
operator fun component3(): Int = throw RuntimeException()
|
|
}
|
|
|
|
// expected: b: 2 |