Files
kotlin-fork/compiler/testData/codegen/box/callableReference/bound/arrayConstructorArgument.kt
T
2021-09-20 19:08:22 +03:00

11 lines
196 B
Kotlin
Vendored

// WITH_RUNTIME
class C(val x: String) {
fun foo(i: Int): Char = x[i]
}
fun box(): String {
val array = CharArray(2, C("OK")::foo)
return array[0].toString() + array[1].toString()
}