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

Pattern Match Exhaustiveness Check Misses a Case #20132

Closed
CyrilFMoser opened this issue Apr 8, 2024 · 4 comments · Fixed by #21000
Closed

Pattern Match Exhaustiveness Check Misses a Case #20132

CyrilFMoser opened this issue Apr 8, 2024 · 4 comments · Fixed by #21000
Assignees
Labels
area:pattern-matching area:reporting Error reporting including formatting, implicit suggestions, etc itype:bug
Milestone

Comments

@CyrilFMoser
Copy link

CyrilFMoser commented Apr 8, 2024

Compiler version

3.4.1

Minimized code

sealed trait T_B[B]

case class CC_A()
case class CC_C[B]() extends T_B[B]
case class CC_D[B](b: T_B[B]) extends T_B[CC_A]

val v_a: T_B[CC_A] = CC_D(CC_D(null))
val v_b: Int = v_a match {
  case CC_C()       => 0
  case CC_D(CC_C()) => 1
}

Output

Crashes runtime error (MatchError)

Expectation

Should give a warning at compile time that the pattern match is not exhaustive.

@CyrilFMoser CyrilFMoser added itype:bug stat:needs triage Every issue needs to have an "area" and "itype" label labels Apr 8, 2024
@Gedochao
Copy link
Contributor

Gedochao commented Jun 4, 2024

Crashes

I wasn't able to reproduce the crash.
Assuming this to just be a reporting issue.

@Gedochao Gedochao added area:reporting Error reporting including formatting, implicit suggestions, etc area:pattern-matching and removed stat:needs triage Every issue needs to have an "area" and "itype" label labels Jun 4, 2024
@Gedochao
Copy link
Contributor

Gedochao commented Jun 4, 2024

Ah, right. There's no crash, but the code fails by throwing an exception at runtime when run as a script.

// repro-script.sc
sealed trait T_B[B]

case class CC_A()
case class CC_C[B]() extends T_B[B]
case class CC_D[B](b: T_B[B]) extends T_B[CC_A]

val v_a: T_B[CC_A] = CC_D(CC_D(null))
val v_b: Int = v_a match {
  case CC_C()       => 0
  case CC_D(CC_C()) => 1
}
scala-cli run repro-script.sc               
Compiling project (Scala 3.4.2, JVM (17))
Compiled project (Scala 3.4.2, JVM (17))
Exception in thread "main" scala.MatchError: CC_D(CC_D(null)) (of class repro$minusscript$_$CC_D)
        at repro$minusscript$_.<init>(repro-script.sc:10)
        at repro$minusscript_sc$.script$lzyINIT1(repro-script.sc:25)
        at repro$minusscript_sc$.script(repro-script.sc:25)
        at repro$minusscript_sc$.main(repro-script.sc:29)
        at repro$minusscript_sc.main(repro-script.sc)

@Gedochao
Copy link
Contributor

Gedochao commented Jun 4, 2024

@dwijnand dwijnand self-assigned this Jun 4, 2024
@SethTisue
Copy link
Member

(Some of the other issues actually require null, but for this one, Dale has a reproducer that doesn't have null in it.)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
area:pattern-matching area:reporting Error reporting including formatting, implicit suggestions, etc itype:bug
Projects
None yet
Development

Successfully merging a pull request may close this issue.

5 participants