I have the following class:
class MyBot[F[_] : FlatMap]
In this class I have a function:
private def handleCallback(): F[Boolean]
In my understanding this should work:
handleCallback().flatMap(..)
But it throws: cannot resolve symbol flatMap
What do I miss?