Files
kotlin/compiler/testData/diagnostics/tests/dataClasses/multiDeclarationFor.kt
2015-04-29 16:33:24 +02:00

11 lines
177 B
Kotlin
Vendored

// !CHECK_TYPE
data class A(val x: Int, val y: String)
fun foo(arr: Array<A>) {
for ((b, c) in arr) {
checkSubtype<Int>(b)
checkSubtype<String>(c)
}
}