41a416da60
Delete all test methods (and empty test classes), since they'll be auto-generated
9 lines
144 B
Kotlin
9 lines
144 B
Kotlin
class A() {
|
|
class B(val i: Int) {
|
|
}
|
|
|
|
fun test() = Array<B> (10, { B(it) })
|
|
}
|
|
|
|
fun box() = if(A().test()[5].i == 5) "OK" else "fail"
|