Files
kotlin-fork/backend.native/tests/external/codegen/box/extensionFunctions/kt1249.kt
T
2017-03-13 15:31:46 +03: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"
}