-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
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
Compiler issues unnecessary warning when it "knows" better #22816
Comments
The compiler is correct in warning you here (as in, this is not a bug): that match case is unsound. class Foo extends Error(???) with Seq[SomethingUnrelated] This means that Make |
The error message could be better than :) |
The full error message is
Maybe extra explanation is warranted when |
Following on from @s5bug 's first comment, I thought that perhaps another solution would be to reverse the order of the cases. That way all the non-final-ness of Error would have been removed from the equation when it came to the second case. But no, the same error persists. so:- method2 match {
case e:Error => e // e is an Error
case s:Seq[CaseClass] => s // is a Seq[CaseClass] but still gives the same warning
} and even leaving the class qualification off the second case:- method2 match {
case e:Error => e // is an Error
case s => s // is a Seq[CaseClass] | Error I do not understand, given that as I read the spec cases are evaluated in the order they are in the source code, |
Compiler version
3.6.3
Minimized code
Output
The compiler will issue a warning that the type of the elements of the first call to method2 can not be checked at runtime. Having to use an asInstanceOf to bypass this warning is an admisssion of failure.
Expectation
The compiler should realise that there is no need to check this at runtime as it would not have allowed anything other than CaseClass elements to in the Seq in the implementation of method2.
The text was updated successfully, but these errors were encountered: