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

16 lines
246 B
Kotlin
Vendored

package stepOutInlineFunctionStdlib
fun main(args: Array<String>) {
val a = listOf(1, 2, 3)
//Breakpoint!
a.firstOrNull {
it > 1
}
}
fun test(i: Int) = 1
// TRACING_FILTERS_ENABLED: false
// STEP_INTO: 1
// STEP_OUT: 1