fun runBlocking(block: suspend CoroutineScope.() -> T): T = TODO() class CoroutineScope fun test() { runBlocking { repeat(1) { java.lang.Thread.sleep(2) } } }