Files
kotlin-fork/compiler/fir/analysis-tests/testData/resolveWithStdlib/inference/builderInference.kt
T
2021-09-10 16:29:13 +03:00

10 lines
209 B
Kotlin
Vendored

fun <T> foo(@<!OPT_IN_USAGE_ERROR!>BuilderInference<!> block: MutableList<T>.() -> Unit): T = null!!
fun takeString(s: String) {}
fun test() {
val s = foo {
this.add("")
}
takeString(s)
}