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