Files
kotlin-fork/compiler/testData/codegen/box/arrays/kt779.kt
T
Denis Zharkov 654411a0b0 Refactored tests using Array constructor:
Some moved to tests with stdlib
Some changed to use arrayOfNulls
2014-12-11 16:04:03 +03:00

4 lines
119 B
Kotlin

val <T> Array<T>.length : Int get() = this.size()
fun box() = if(arrayOfNulls<Int>(10).length == 10) "OK" else "fail"