mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 08:31:26 +00:00
9 lines
144 B
Kotlin
Vendored
9 lines
144 B
Kotlin
Vendored
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"
|