Line markers for recursive calls.
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
class F {
|
||||
fun f(a: Int) {
|
||||
if (a > 0) {
|
||||
this.<lineMarker>f</lineMarker>(a - 1)
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user