mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-11 00:21:29 +00:00
3 lines
113 B
Kotlin
Vendored
3 lines
113 B
Kotlin
Vendored
// "Replace with 'actual'" "true"
|
|
|
|
<caret>impl public tailrec fun foo(n: Int): Int = if (n < 2) n else foo(n - 1) |