Files
kotlin-fork/compiler/testData/codegen/box/reflection/callBy/boundExtensionPropertyAcessor.kt
T
2016-11-25 16:11:18 +03:00

12 lines
258 B
Kotlin
Vendored

// TODO: muted automatically, investigate should it be ran for JS or not
// IGNORE_BACKEND: JS
// WITH_REFLECT
import kotlin.test.assertEquals
val String.plusK: String
get() = this + "K"
fun box(): String =
("O"::plusK).getter.callBy(mapOf())