``` interface TestInterface { suspend fun toIn...
# coroutines
h
Copy code
interface TestInterface {
    suspend fun toInt(): Int = 1
}

class TestClass2 : TestInterface {

}

fun main(args: Array<String>) {
    val instance : TestClass2? = TestClass2()
    async<Unit> {
        println(instance?.toInt())
    }
}