Function <-> Property Intention: Fix conversion of recursive functions/property accessors

#KT-7823 Fixed
This commit is contained in:
Alexey Sedunov
2015-05-26 14:25:06 +03:00
parent 5afc6235cc
commit cb9b1019b2
7 changed files with 27 additions and 5 deletions
@@ -0,0 +1,2 @@
// WITH_RUNTIME
fun String.<caret>foo(): String = if (isEmpty()) "" else substring(1).foo()