Files
kotlin-fork/compiler/testData/codegen/regressions/kt1249.kt
T
2012-06-26 23:13:53 +02:00

13 lines
212 B
Kotlin

//KT-1249 IllegalStateException invoking function property
class TestClass(val body : () -> Unit) : Any() {
fun run() {
body()
}
}
fun box() : String {
TestClass({}).run()
return "OK"
}