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

7 lines
174 B
Kotlin
Vendored

data <!PRIMARY_CONSTRUCTOR_REQUIRED_FOR_DATA_CLASS!>class A<!>
fun foo(a: A) {
a.<!UNRESOLVED_REFERENCE!>component1<!>()
a.<!UNRESOLVED_REFERENCE!>component2<!>()
}