Files
kotlin-fork/compiler/testData/codegen/regressions/kt1249.kt
T
Svetlana Isakova 22e9e7de10 more small tests
2012-05-04 20:47:26 +04:00

13 lines
210 B
Kotlin

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