Files
kotlin-fork/idea/testData/intentions/convertPropertyToFunction/recursiveAccessor.kt.after
T

2 lines
84 B
Plaintext
Vendored

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