Files
kotlin-fork/idea/testData/refactoring/introduceVariable/ComplexCallee.kt
T

7 lines
150 B
Kotlin
Vendored

// WITH_RUNTIME
fun fn(index : Int, list: List<()->Unit>) {
when {
index in list.indices -> <selection>list[index]</selection>()
}
}