Files
kotlin-fork/compiler/testData/codegen/box/reflection/callBy/boundExtensionPropertyAcessor.kt
T
2023-06-07 14:59:38 +00:00

11 lines
186 B
Kotlin
Vendored

// TARGET_BACKEND: JVM
// WITH_REFLECT
import kotlin.test.assertEquals
val String.plusK: String
get() = this + "K"
fun box(): String =
("O"::plusK).getter.callBy(mapOf())