Files
kotlin-fork/compiler/testData/diagnostics/testsWithStdLib/builderInference/kt50520.fir.kt
T
2023-01-30 09:29:58 +00:00

11 lines
187 B
Kotlin
Vendored

// WITH_STDLIB
// SKIP_TXT
fun box(): String {
<!NEW_INFERENCE_NO_INFORMATION_FOR_PARAMETER!>buildList<!> {
val foo = { first() }
add(0, foo)
}
return "OK"
}