Move debugger test data to the new location
This commit is contained in:
Vendored
+22
@@ -0,0 +1,22 @@
|
||||
package lambdaFun1
|
||||
|
||||
fun foo() {
|
||||
block {
|
||||
//Breakpoint!
|
||||
val a = 5
|
||||
}
|
||||
}
|
||||
|
||||
fun <T> block(block: () -> T): T {
|
||||
return block()
|
||||
}
|
||||
|
||||
fun main() {
|
||||
foo()
|
||||
}
|
||||
|
||||
// PRINT_FRAME
|
||||
// SHOW_KOTLIN_VARIABLES
|
||||
|
||||
// EXPRESSION: this
|
||||
// RESULT: 'this' is not defined in this context
|
||||
Reference in New Issue
Block a user