Files
kotlin-fork/compiler/testData/diagnostics/tests/dataClasses/twoValParams.kt
T

10 lines
171 B
Kotlin
Vendored

// FIR_IDENTICAL
// !CHECK_TYPE
data class A(val x: Int, val y: String)
fun foo(a: A) {
checkSubtype<Int>(a.component1())
checkSubtype<String>(a.component2())
}