Files
kotlin-fork/idea/testData/intentions/convertPropertyToFunction/recursiveAccessor.kt.after
T
2015-10-01 17:35:12 +03:00

2 lines
90 B
Plaintext
Vendored

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