f0a1d3e3b1
In particular, this commit makes isExternal, isExpect and isTailRec always false for FIR2IR reference adapters #KT-55461 Fixed
8 lines
169 B
Kotlin
Vendored
8 lines
169 B
Kotlin
Vendored
fun test(f: (Int, Int) -> Array<Int>) =
|
|
f('O'.toInt(), 'K'.toInt())
|
|
|
|
fun box(): String {
|
|
val t = test(::arrayOf)
|
|
return "${t[0].toChar()}${t[1].toChar()}"
|
|
}
|