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

11 lines
174 B
Kotlin
Vendored

package stepOverDeclarationInInlineFun
fun main(args: Array<String>) {
foo { 1 }
}
inline fun foo(f: () -> Int): Int {
//Breakpoint!
val a = 15
return f()
}