Move debugger test data to the new location
This commit is contained in:
Vendored
+18
@@ -0,0 +1,18 @@
|
||||
package stepOverInlinedLambdaStdlib
|
||||
|
||||
fun main(args: Array<String>) {
|
||||
//Breakpoint!
|
||||
val a = listOf(1, 2, 3)
|
||||
a.filter { it > 1 } /*!*/
|
||||
|
||||
a.filter { it > 1 }.map { it * 2 } /*!*/
|
||||
|
||||
a.filter { /*!*/
|
||||
it > 1
|
||||
}.map {
|
||||
it * 2
|
||||
}
|
||||
} /*!*/
|
||||
|
||||
// TRACING_FILTERS_ENABLED: false
|
||||
// STEP_OVER: 4
|
||||
Reference in New Issue
Block a user