Line markers for recursive calls.

This commit is contained in:
Evgeny Gerashchenko
2015-04-02 01:46:45 +03:00
parent 06c05193a6
commit 6041d566d9
16 changed files with 285 additions and 0 deletions
@@ -0,0 +1,7 @@
class F {
fun f(a: Int, other: F) {
if (a > 0) {
other.f(a - 1)
}
}
}