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

19 lines
285 B
Kotlin
Vendored

package stopInLambdaInlineCallLambda
fun main(args: Array<String>) {
var prop = 1
{
inlineFun {
{
//Breakpoint!
foo(12)
}()
}
}()
}
inline fun inlineFun(f: () -> Unit) {
f()
}
fun foo(a: Any) {}