blob: cb0dcfcf3b43880cb14de8090d96fb1cc13bf254 [file]
// 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())
}