Is there a way to enable intellij to show a warnin...
# coroutines
h
Is there a way to enable intellij to show a warning when trying to call a suspend function that can error without using try catch?
🚫 1
v
You can use a result-handling monad for this. That way, you won't be able to get the return type of the function without handling errors, I have made one such for myself