7382d7c7d6
#KT-14704 Fixed
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>
|
|
}
|
|
} |