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

9 lines
178 B
Kotlin
Vendored

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