41a416da60
Delete all test methods (and empty test classes), since they'll be auto-generated
13 lines
244 B
Kotlin
13 lines
244 B
Kotlin
object Obj {
|
|
class Inner() {
|
|
fun ok() = "OK"
|
|
}
|
|
}
|
|
|
|
fun box() : String {
|
|
val klass = Class.forName("Obj\$Inner")!!
|
|
val cons = klass.getConstructors()!![0]
|
|
val inner = cons.newInstance(* Array(0){""})
|
|
return "OK"
|
|
}
|