mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-14 00:21:34 +00:00
10 lines
163 B
Kotlin
Vendored
10 lines
163 B
Kotlin
Vendored
fun async(f: suspend () -> Unit) {}
|
|
|
|
suspend fun await() {}
|
|
|
|
// SIBLING:
|
|
fun main(args: Array<String>) {
|
|
async {
|
|
<selection>await()</selection>
|
|
}
|
|
} |