Intellij: Expression of type IO[Long] doesn't conform to expected type FS2_[O2_]

197 Views Asked by At

I tried the code of this Blog: a-streaming-library-with-a-superpower-fs2-and-functional-programming

In Intellij this code:

Stream("bob", "alice", "joe")
      .evalMap(name => IO.fromFuture(IO(loadUserIdByName(name)))) // <- here is the exception
      .compile
      .toList

Gives me this exception:

Expression of type IO[Long] doesn't conform to expected type FS2_[O2_]

Running the code with sbt works without a problem.

Is there a way to get rid of this exception in Intellij?

1

There are 1 best solutions below

0
On BEST ANSWER

I noticed myself the typechecker always needs some help here, so explicitly set the effect and return type: in your case evalMap[IO, Long]