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

3 lines
90 B
Plaintext
Vendored

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