1ca3c5e3b8
#KT-8312 Fixed
7 lines
150 B
Kotlin
Vendored
7 lines
150 B
Kotlin
Vendored
// WITH_RUNTIME
|
|
|
|
fun fn(index : Int, list: List<()->Unit>) {
|
|
when {
|
|
index in list.indices -> <selection>list[index]</selection>()
|
|
}
|
|
} |