41a416da60
Delete all test methods (and empty test classes), since they'll be auto-generated
13 lines
212 B
Kotlin
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"
|
|
}
|
|
|