Files
kotlin/compiler/testData/codegen/script/destructuringDeclarationUnderscore.kts
2017-05-25 16:46:06 +03:00

9 lines
209 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