Since `suspend fun foo(): Int` should be preferred...
# coroutines
j
Since
suspend fun foo(): Int
should be preferred to
fun foo(): Deferred<Int>
. Wouldn't it be nice if the IDE would show warning when the result of a function is a deferred? It could help newcomers.
e