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