Debugger: Remove false-positive assertion (KT-24343)

This commit is contained in:
Yan Zhulanow
2018-09-17 22:15:34 +03:00
parent 713dc589e0
commit b8c756a4e8
4 changed files with 26 additions and 3 deletions
@@ -0,0 +1,10 @@
package kt24343
fun main(args: Array<String>) {
val list = listOf(1, 2)
//Breakpoint!
list.map { it + 1 }
println()
}
// STEP_OVER: 1
@@ -0,0 +1,10 @@
LineBreakpoint created at kt24343.kt:6
Run Java
Connected to the target VM
kt24343.kt:6
kt24343.kt:6
resuming kt24343.kt:6
Disconnected from the target VM
Process finished with exit code 0