uli
09/26/2019, 10:54 AMRedundant 'suspend' modifier: lambda parameters of suspend function type uses existing continuation..
The IDE suggests to remove the suspend modifier of the lambda parameter `populator`:
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.