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

16 lines
257 B
Kotlin
Vendored

package ifCapturedVariableKt9118
fun main(args: Array<String>) {
//Breakpoint!
if (1 > 2) {
println()
}
var isCompiledDataFromCache = true
foo {
isCompiledDataFromCache = false
}
}
fun foo(f: () -> Unit) {
f()
}