Move debugger test data to the new location
This commit is contained in:
Vendored
+27
@@ -0,0 +1,27 @@
|
||||
package nestedInlineFun2
|
||||
|
||||
fun main() {
|
||||
val a = 1
|
||||
foo {
|
||||
val b = 2
|
||||
}
|
||||
}
|
||||
|
||||
inline fun foo(block: () -> Unit) {
|
||||
val x = 3
|
||||
bar(1) {
|
||||
val y = 2
|
||||
//Breakpoint!
|
||||
block()
|
||||
}
|
||||
}
|
||||
|
||||
inline fun bar(count: Int, block: () -> Unit) {
|
||||
var i = count
|
||||
while (i-- > 0) {
|
||||
block()
|
||||
}
|
||||
}
|
||||
|
||||
// SHOW_KOTLIN_VARIABLES
|
||||
// PRINT_FRAME
|
||||
Reference in New Issue
Block a user