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

11 lines
118 B
Kotlin
Vendored

class A {
fun plus(a: A) {}
}
fun foo() {
f1() + A() + A()<caret>
}
fun f1() = A()
// EXISTS: plus(A), f1()