You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
compiling with scalac hangs in the typer phase (as shown by scalac -Ydebug). Additional observations:
I would expect a type error in the line containing Vector.
If I replace the tuple (Int, Int) with a simple Int, the example compiles. I would have expected the type error, but maybe there is some implicit conversion at work here?
If I replace Vector with LazyList, everything works as expected.
The text was updated successfully, but these errors were encountered:
Using Scala 2.13.5 (on Ubuntu Java 11.0.10 x64)
compiling with
scalac
hangs in the typer phase (as shown byscalac -Ydebug
). Additional observations:Vector
.(Int, Int)
with a simpleInt
, the example compiles. I would have expected the type error, but maybe there is some implicit conversion at work here?Vector
withLazyList
, everything works as expected.The text was updated successfully, but these errors were encountered: