8 lines
82 B
Kotlin
Vendored
8 lines
82 B
Kotlin
Vendored
fun t1() {
|
|
for (i in 1..2) {
|
|
doSmth(i)
|
|
}
|
|
}
|
|
|
|
fun doSmth(i: Int) {}
|