Files
kotlin-fork/compiler/testData/codegen/box/objects/kt3238.kt
T
Alexander Udalov 41a416da60 Move blackBoxFile() testData to box/ directory
Delete all test methods (and empty test classes), since they'll be
auto-generated
2013-01-28 18:20:17 +04:00

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"
}