Files
kotlin-fork/idea/testData/intentions/convertFunctionToProperty/recursiveFunction.kt
T

2 lines
91 B
Kotlin
Vendored

// WITH_RUNTIME
fun String.<caret>foo(): String = if (isEmpty()) "" else substring(1).foo()