mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-15 15:53:36 +00:00
14 lines
207 B
Plaintext
Vendored
14 lines
207 B
Plaintext
Vendored
fun async(f: suspend () -> Unit) {}
|
|
|
|
suspend fun await() {}
|
|
|
|
// SIBLING:
|
|
fun main(args: Array<String>) {
|
|
async {
|
|
__dummyTestFun__()
|
|
}
|
|
}
|
|
|
|
private suspend fun __dummyTestFun__() {
|
|
await()
|
|
} |