We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
3.0.0
scala> ???.asInstanceOf[scala.collection.Seq] += 1
Note:
s.c.Seq
+=
Absolutely nothing: No output, no error, no new prompt. Same with -Xprint:typer:
-Xprint:typer
$ time scala -Xprint:typer scala> ???.asInstanceOf[scala.collection.Seq] += 1 ^C real 1m5,798s user 0m8,007s sys 0m0,721s
The text was updated successfully, but these errors were encountered:
Already fixed on master by #12223
Now:
scala> ???.asInstanceOf[scala.collection.Seq] += 1 1 |???.asInstanceOf[scala.collection.Seq] += 1 |^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ |collection.Seq takes type parameters
Sorry, something went wrong.
No branches or pull requests
Compiler version
3.0.0
Minimized code
Note:
s.c.Seq
is omitted (Compiler does not freeze if it is given)+=
is not a member of collection.SeqOutput (click arrow to expand)
Absolutely nothing: No output, no error, no new prompt.
Same with
-Xprint:typer
:The text was updated successfully, but these errors were encountered: