472ec72eb9
1. Move tests to their own module 2. Avoid sharing the 'tinyApp' project between tests 3. Clean up option directive handling
23 lines
305 B
Kotlin
Vendored
23 lines
305 B
Kotlin
Vendored
// ATTACH_LIBRARY: coroutines
|
|
|
|
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()
|
|
}
|
|
} |