11 lines
181 B
Kotlin
Vendored
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 |