f9de91016a
#KT-25251 In Progress
9 lines
251 B
Kotlin
Vendored
9 lines
251 B
Kotlin
Vendored
// "Fix experimental coroutines usage" "true"
|
|
// SHOULD_BE_AVAILABLE_AFTER_EXECUTION
|
|
// WITH_RUNTIME
|
|
|
|
import kotlin.coroutines.experimental.Continuation
|
|
|
|
fun test(con: Continuation<Int>) {
|
|
con.<caret>resumeWithException(RuntimeException("Haha"))
|
|
} |