Files
kotlin/idea/testData/debugger/smartStepInto/arrayAccess.kt
Natalia Ukhorskaya e8d2ba197e Debugger: implement Smart Step Into
#KT-4639 Fixed
2014-03-21 16:08:01 +04:00

10 lines
102 B
Kotlin

fun foo() {
val a = A()
<caret>a[1]
}
class A {
fun get(i: Int) = 1
}
// EXISTS: get(int)