Move debugger test data to the new location
This commit is contained in:
Vendored
+21
@@ -0,0 +1,21 @@
|
||||
package stepIntoSuspendFunctionSimple
|
||||
|
||||
import forTests.builder
|
||||
|
||||
private fun foo() {}
|
||||
|
||||
suspend fun second() {
|
||||
}
|
||||
|
||||
suspend fun first(): Int {
|
||||
second()
|
||||
return 12
|
||||
}
|
||||
|
||||
fun main(args: Array<String>) {
|
||||
builder {
|
||||
//Breakpoint!
|
||||
first()
|
||||
foo()
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user