Files
kotlin-fork/compiler/testData/codegen/box/reflection/call/localClassMember.kt
T

10 lines
143 B
Kotlin
Vendored

// WITH_REFLECT
fun box(): String {
class Local {
fun result(s: String) = s
}
return Local::result.call(Local(), "OK")
}