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 #20129

Open
CyrilFMoser opened this issue Apr 8, 2024 · 3 comments
Open

Pattern Match Exhaustiveness Check Misses a Case #20129

CyrilFMoser opened this issue Apr 8, 2024 · 3 comments
Assignees
Labels
area:pattern-matching area:reporting Error reporting including formatting, implicit suggestions, etc itype:bug

Comments

@CyrilFMoser
Copy link

CyrilFMoser commented Apr 8, 2024

Compiler version

3.4.1

Minimized code

sealed trait T_A[A]
case class CC_B[A](a: T_A[A], c: T_A[A]) extends T_A[Char]
case class CC_C[A]() extends T_A[A]
case class CC_G() extends T_A[Char]

val v_a: T_A[Char] = CC_B(CC_G(), CC_C())
val v_b: Int = v_a match {
  case CC_C()                   => 0
  case CC_G()                   => 1
  case CC_B(CC_B(_, _), CC_C()) => 2
  case CC_B(CC_C(), CC_C())     => 3
  case CC_B(_, CC_G())          => 4
  case CC_B(_, CC_B(_, _))      => 5
}

Output

Crashes

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

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

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_A[A]
case class CC_B[A](a: T_A[A], c: T_A[A]) extends T_A[Char]
case class CC_C[A]() extends T_A[A]
case class CC_G() extends T_A[Char]

val v_a: T_A[Char] = CC_B(CC_G(), CC_C())
val v_b: Int = v_a match {
  case CC_C()                   => 0
  case CC_G()                   => 1
  case CC_B(CC_B(_, _), CC_C()) => 2
  case CC_B(CC_C(), CC_C())     => 3
  case CC_B(_, CC_G())          => 4
  case CC_B(_, CC_B(_, _))      => 5
}
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_B(CC_G(),CC_C()) (of class repro$minusscript$_$CC_B)
        at repro$minusscript$_.<init>(repro-script.sc:13)
        at repro$minusscript_sc$.script$lzyINIT1(repro-script.sc:28)
        at repro$minusscript_sc$.script(repro-script.sc:28)
        at repro$minusscript_sc$.main(repro-script.sc:32)
        at repro$minusscript_sc.main(repro-script.sc)

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

No branches or pull requests

3 participants