7 lines
105 B
Kotlin
7 lines
105 B
Kotlin
fun foo(arr: Array<Int>?) {
|
|
for (x in arr!!) {
|
|
arr : Array<Int>
|
|
}
|
|
arr : Array<Int>
|
|
}
|