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
A REPL needs a better story for implicit application than -Xprint:typer.
-Xprint:typer
There's coloring and underlining.
Another idea is an explanatory comment on the input line:
scala> q + 1 // scala.this.Predef.any2stringadd[scala.collection.immutable.Queue[Int]]($line11.$read.q).+(1)
Shorter type names would help that solution.
Inspired by a representative question
The text was updated successfully, but these errors were encountered:
Imported From: https://issues.scala-lang.org/browse/SI-9826?orig=1 Reporter: @som-snytt Affected Versions: 2.12.0-M4
Sorry, something went wrong.
That is called -Vimplicit-conversions.
-Vimplicit-conversions
scala> q + 42 ^ applied implicit conversion from q.type to ?{def + : ?} = final implicit def any2stringadd[A](self: A): any2stringadd[A] ^ error: type mismatch; found : Int(42) required: String
No branches or pull requests
A REPL needs a better story for implicit application than
-Xprint:typer
.There's coloring and underlining.
Another idea is an explanatory comment on the input line:
Shorter type names would help that solution.
Inspired by a representative question
The text was updated successfully, but these errors were encountered: