1ca3c5e3b8
#KT-8312 Fixed
10 lines
187 B
Plaintext
Vendored
10 lines
187 B
Plaintext
Vendored
// WITH_RUNTIME
|
|
|
|
fun fn(index : Int, list: List<()->Unit>) {
|
|
when {
|
|
index in list.indices -> {
|
|
val function = list[index]
|
|
function()
|
|
}
|
|
}
|
|
} |