9 lines
95 B
Plaintext
Vendored
9 lines
95 B
Plaintext
Vendored
// "Replace with 'tailrec'" "true"
|
|
|
|
tailrec
|
|
fun foo() {
|
|
if (1 > 2) {
|
|
foo()
|
|
}
|
|
}
|