Deprecate tailRecursive in favor of tailrec
This commit is contained in:
Vendored
+1
-1
@@ -1,4 +1,4 @@
|
||||
tailRecursive fun foo(x: Int) {
|
||||
tailrec fun foo(x: Int) {
|
||||
return if (x > 0) {
|
||||
(foo(x - 1))
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user