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

6 lines
183 B
Kotlin
Vendored

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