Files
kotlin-fork/compiler/testData/codegen/box/arrays/nonNullArray.kt
T
2018-06-09 19:15:38 +03:00

10 lines
169 B
Kotlin
Vendored

// IGNORE_BACKEND: JS_IR
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"