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