Files
kotlin-fork/compiler/testData/codegen/box/callableReference/arrayConstructorArgument.kt
T
2021-09-27 17:07:39 +03:00

9 lines
182 B
Kotlin
Vendored

// WITH_RUNTIME
fun foo(it: Int) = "O"[it]
val Int.foo: Char
get() = "K"[this]
fun box(): String =
CharArray(1, ::foo)[0].toString() + CharArray(1, Int::foo)[0].toString()