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.
Compilation Failed
Main.scala:49: value concurrent is not a member of object cmd1.importing_issue.scala
import scala.concurrent.duration.{
^
Main.scala:93: value None is not a member of object cmd1.importing_issue.scala
.print(res3, res3, "res3", scala.None)
^
and makes your repl useless.
The text was updated successfully, but these errors were encountered:
This is tricky; we could probably make it work by maintaining the previousImports map as ordered by insertion. We'd also need to keep multiple imports from the same namespace separate rather than collapsing them into the same import statement, to support cases like
Here is an example code that makes importing scala._ stuff impossible:
which results in:
and makes your repl useless.
The text was updated successfully, but these errors were encountered: