Files
kotlin-fork/idea/testData/editor/quickDoc/Tailrec.kt
T
2019-02-19 21:35:36 +01:00

5 lines
242 B
Kotlin
Vendored

<caret>tailrec fun foo() {
foo()
}
//INFO: tailrec marks a function as <a href="https://kotlinlang.org/docs/reference/functions.html#tail-recursive-functions">tail-recursive</a> (allowing the compiler to replace recursion with iteration)