Files
kotlin-fork/compiler/testData/codegen/box/extensionFunctions/kt1249.kt
T
2018-08-09 14:22:50 +03:00

13 lines
212 B
Kotlin
Vendored

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