Move debugger test data to the new location
This commit is contained in:
+17
@@ -0,0 +1,17 @@
|
||||
package stepIntoFromInlineFun
|
||||
|
||||
class A()
|
||||
|
||||
fun main(args: Array<String>) {
|
||||
val a = A()
|
||||
a.test { it + 1 }
|
||||
val b = 1
|
||||
}
|
||||
|
||||
inline fun A.test(l: (Int) -> Unit) {
|
||||
//Breakpoint!
|
||||
l(11)
|
||||
}
|
||||
|
||||
// STEP_INTO: 1
|
||||
// TRACING_FILTERS_ENABLED: false
|
||||
Reference in New Issue
Block a user