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
object Test { case class Bar[A] def meth[A](consumer: A => Unit, s: Bar[A]): Unit = { s match { case bar: Bar[a] => { meth(consumer, new Bar[a]) // ok with `meth[a]` } } } }
assertion failed: found: (A => Unit)(consumer) required: a => Unit
when compiled with dotc -Ycheck:refchecks test.scala
dotc -Ycheck:refchecks test.scala
The text was updated successfully, but these errors were encountered:
Still failing with #4183 merged
Sorry, something went wrong.
Thanks for checking!
Add regression tests for various open issues
55462a5
Fix scala#1533, scala#2032, scala#2109, scala#2339, scala#3506, scala#4316, scala#5733, scala#5345.
ff5855d
Already fixed, regression test in #5800.
biboudis
No branches or pull requests
Uh oh!
There was an error while loading. Please reload this page.
when compiled with
dotc -Ycheck:refchecks test.scala
The text was updated successfully, but these errors were encountered: