Hi, Android Studio complains about `Redundant 'sus...
# coroutines
u
Hi, Android Studio complains about
Redundant 'suspend' modifier: lambda parameters of suspend function type uses existing continuation.
. The IDE suggests to remove the
suspend
modifier of the lambda parameter `populator`:
Copy code
private suspend inline fun <T> runCatchingSilentError(populator: suspend () -> T) {
But if I do so suspend lambdas still work, but function references to suspend functions are no longer accepted.