Files
kotlin-fork/compiler/testData/codegen/box/functions/localFunctions/kt4777.kt
T
2014-03-27 22:46:44 +04:00

15 lines
199 B
Kotlin

var result = "Fail"
val p = object : Runnable {
override fun run() {
fun <T : Any> T.id() = this
result = "OK".id()
}
}
fun box(): String {
p.run()
return result
}