Files
kotlin-fork/compiler/testData/diagnostics/tests/dataClasses/notADataClass.fir.kt
T

7 lines
146 B
Kotlin
Vendored

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