Files
kotlin-fork/idea/testData/codeInsight/lineMarker/recursiveCall/conventionCall.kt
T
2015-04-08 15:14:10 +03:00

5 lines
91 B
Kotlin

fun Any.get(a: Int) {
if (a > 0) {
<lineMarker>this[a - 1]</lineMarker>
}
}