9 lines
181 B
Kotlin
Vendored
9 lines
181 B
Kotlin
Vendored
// !CHECK_TYPE
|
|
|
|
data class A(<!UNUSED_PARAMETER!>x<!>: Int, val y: String)
|
|
|
|
fun foo(a: A) {
|
|
checkSubtype<String>(a.component1())
|
|
a.<!UNRESOLVED_REFERENCE!>component2<!>()
|
|
}
|