// "Replace with 'actual'" "true" impl public tailrec fun foo(n: Int): Int = if (n < 2) n else foo(n - 1)