Skip to content
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

Open
DavidGoodenough opened this issue Mar 16, 2025 · 4 comments
Open

Compiler issues unnecessary warning when it "knows" better #22816

DavidGoodenough opened this issue Mar 16, 2025 · 4 comments
Labels
better-errors Issues concerned with improving confusing/unhelpful diagnostic messages itype:bug

Comments

@DavidGoodenough
Copy link

Compiler version

3.6.3

Minimized code

case class CaseClass(a:Int)
case class Error(a:Int)

abstract class fred{
  def method:CaseClass | Error

  method match {
    case t:CaseClass => // use t which is a CaseClass
    case e:Error => // use e which is an error
    }

  def method2:Seq[CaseClass] | Error

  method2 match {
    case s:Seq[CaseClass] => // issues an unnecessary warning that the class of the elements can not be checked
    case e:Error => // use e which is an error
    }
  method2 match {
    case s:Seq[?] => s.asInstanceOf[Seq[CaseClass]] // is needed to let the code here know what type s is
    case e:Error =>
    }
  }

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.

@DavidGoodenough DavidGoodenough added itype:bug stat:needs triage Every issue needs to have an "area" and "itype" label labels Mar 16, 2025
@s5bug
Copy link

s5bug commented Mar 16, 2025

The compiler is correct in warning you here (as in, this is not a bug): that match case is unsound. Error is not final, meaning I could define a class such as

class Foo extends Error(???) with Seq[SomethingUnrelated]

This means that method2 could produce Foo, which would match against Seq, but not be a Seq[CaseClass].

Make Error final via final case class Error(... and you will not see this warning.

@arturaz
Copy link

arturaz commented Mar 16, 2025

The error message could be better than :)

@s5bug
Copy link

s5bug commented Mar 16, 2025

The full error message is

the type test for Seq[CaseClass] cannot be checked at runtime because its type arguments can't be determined from Error

Maybe extra explanation is warranted when Error is a non-final, non-sealed case class.

@DavidGoodenough
Copy link
Author

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,
how s could be an Error2 as already been collected by the first case.

@Gedochao Gedochao added better-errors Issues concerned with improving confusing/unhelpful diagnostic messages and removed stat:needs triage Every issue needs to have an "area" and "itype" label labels Mar 18, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
better-errors Issues concerned with improving confusing/unhelpful diagnostic messages itype:bug
Projects
None yet
Development

No branches or pull requests

4 participants