blob: bc94438dd070d4383215e89dcb13cedf1318caae [file]
// KJS_WITH_FULL_RUNTIME
// TODO remove stdlib dependency
class A(val list: List<String>) {
init {
run {
list.map { it }
}
}
fun foo() = list.map { it }
}
fun box() = A(listOf("OK")).foo().first()