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