11 lines
166 B
Kotlin
Vendored
11 lines
166 B
Kotlin
Vendored
// TARGET_BACKEND: JVM
|
|
// WITH_REFLECT
|
|
|
|
fun box(): String {
|
|
class Local {
|
|
fun result(s: String) = s
|
|
}
|
|
|
|
return Local::result.call(Local(), "OK")
|
|
}
|