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