Files
kotlin-fork/compiler/testData/cfg/ArrayOfFunctions.kt
T
Svetlana Isakova 4c4e192914 Fixed: control flow graph building for array of functions.
'get' call for array should be get from INDEXED_LVALUE_GET
2013-12-06 15:58:45 +04:00

3 lines
56 B
Kotlin

fun test(array: Array<(Int)->Unit>) {
array[11](3)
}