10 lines
209 B
Kotlin
Vendored
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)
|
|
} |