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
class A class B extends A class C extends A object Foo { private[this] class Bar[+T](var x: T) def foo: B = { val barB: Bar[B] = new Bar(new B) val barA: Bar[A] = barB barA.x = new C barB.x } } Foo.foo
java.lang.ClassCastException
Variance error is reported.
private
private[this]
The text was updated successfully, but these errors were encountered:
3f4f285
Merge pull request #7573 from dotty-staging/fix-#7567
2bf5eb0
Fix #7567: Variance checking fixes
No branches or pull requests
minimized code
result
java.lang.ClassCastException
expectation
Variance error is reported.
variations
private
is also broken in Dottyprivate[this]
is also broken in Scalacprivate
is detected in ScalacThe text was updated successfully, but these errors were encountered: