Files
kotlin/idea/testData/refactoring/extractFunction/basic/suspendCall.kt
2017-01-25 14:24:49 +03:00

10 lines
163 B
Kotlin
Vendored

fun async(f: suspend () -> Unit) {}
suspend fun await() {}
// SIBLING:
fun main(args: Array<String>) {
async {
<selection>await()</selection>
}
}