8 lines
106 B
Kotlin
Vendored
8 lines
106 B
Kotlin
Vendored
class F {
|
|
fun f(a: Int, other: F) {
|
|
if (a > 0) {
|
|
other.f(a - 1)
|
|
}
|
|
}
|
|
}
|