Files
kotlin-fork/idea/jvm-debugger/jvm-debugger-test/testData/stepping/stepInto/stepIntoFromInlineFun.kt
T
2019-10-08 19:13:55 +09:00

18 lines
248 B
Kotlin
Vendored

package stepIntoFromInlineFun
class A()
fun main(args: Array<String>) {
val a = A()
a.test { it + 1 }
val b = 1
}
inline fun A.test(l: (Int) -> Unit) {
//Breakpoint!
l(11)
}
// STEP_INTO: 1
// TRACING_FILTERS_ENABLED: false