Files
kotlin-fork/idea/jvm-debugger/jvm-debugger-test/testData/evaluation/singleBreakpoint/suspendCalls.kt
T
2019-10-08 19:13:55 +09:00

11 lines
181 B
Kotlin
Vendored

package suspendCalls
suspend fun main() {
//Breakpoint!
foo()
}
suspend fun foo(): Int = 42
// EXPRESSION: foo()
// RESULT: Evaluation of 'suspend' calls is not supported