Move debugger test data to the new location
This commit is contained in:
Vendored
+11
@@ -0,0 +1,11 @@
|
||||
package stepOverDeclarationInInlineFun
|
||||
|
||||
fun main(args: Array<String>) {
|
||||
foo { 1 }
|
||||
}
|
||||
|
||||
inline fun foo(f: () -> Int): Int {
|
||||
//Breakpoint!
|
||||
val a = 15
|
||||
return f()
|
||||
}
|
||||
Reference in New Issue
Block a user