Move debugger test data to the new location
This commit is contained in:
Vendored
+21
@@ -0,0 +1,21 @@
|
||||
package stopInLocalFunInlineCallLambda
|
||||
|
||||
fun main(args: Array<String>) {
|
||||
var prop = 1
|
||||
fun local() {
|
||||
inlineFun {
|
||||
{
|
||||
//Breakpoint!
|
||||
foo(12)
|
||||
}()
|
||||
}
|
||||
}
|
||||
|
||||
local()
|
||||
}
|
||||
|
||||
inline fun inlineFun(f: () -> Unit) {
|
||||
f()
|
||||
}
|
||||
|
||||
fun foo(a: Any) {}
|
||||
Reference in New Issue
Block a user