Files
kotlin-fork/compiler/testData/diagnostics/testsWithStdLib/regression/kt37727.fir.kt
T

6 lines
183 B
Kotlin
Vendored

data class A(val x: <!UNRESOLVED_REFERENCE!>Set<CLassNotFound><!> = setOf()) {
fun with(x: <!UNRESOLVED_REFERENCE!>Set<CLassNotFound>?<!> = null) {
A(x ?: this.x)
}
}