We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Using the develop branch of the fs2 repository and running sbt ;project coreJVM;console:
develop
sbt ;project coreJVM;console
scala> import fs2.Stream scala> Stream(1) 1 |Stream(1) |^^^^^^ |getter Stream in package scala is deprecated since 2.13.0: Use LazyList instead of Stream val res0: Stream[Int] = Stream(1, <not computed>) scala> fs2.Stream(1) val res1: fs2.Stream[fs2.Pure, Int] = Stream(..)
Despite the explicit import of fs2.Stream, the call to Stream(1) is resolved as a call to scala.Stream(1) instead of fs2.Stream(1).
fs2.Stream
Stream(1)
scala.Stream(1)
fs2.Stream(1)
The text was updated successfully, but these errors were encountered:
Related to #7635 where resolution is against the class path before repl history.
Sorry, something went wrong.
griggt
Successfully merging a pull request may close this issue.
Uh oh!
There was an error while loading. Please reload this page.
Minimized code
Using the
develop
branch of the fs2 repository and runningsbt ;project coreJVM;console
:Despite the explicit import of
fs2.Stream
, the call toStream(1)
is resolved as a call toscala.Stream(1)
instead offs2.Stream(1)
.The text was updated successfully, but these errors were encountered: