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

9 lines
181 B
Kotlin
Vendored

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