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

11 lines
228 B
Kotlin
Vendored

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