Files
kotlin-fork/idea/testData/quickfix/migration/tailRec.kt.after
T
2015-09-10 10:04:59 +03:00

9 lines
95 B
Plaintext
Vendored

// "Replace with 'tailrec'" "true"
tailrec
fun foo() {
if (1 > 2) {
foo()
}
}