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

9 lines
144 B
Kotlin
Vendored

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