mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-11 08:31:30 +00:00
3 lines
108 B
Plaintext
Vendored
3 lines
108 B
Plaintext
Vendored
// "Replace with 'actual'" "true"
|
|
|
|
public actual tailrec fun foo(n: Int): Int = if (n < 2) n else foo(n - 1) |