-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Handle sealed prefixes in exh checking
- Loading branch information
Showing
7 changed files
with
88 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
13: Pattern Match Exhaustivity: A(_), C(_) | ||
13: Pattern Match Exhaustivity: X[<?>] & (X.this : X[T]).A(_), X[<?>] & (X.this : X[T]).C(_) | ||
21: Pattern Match |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
// scalac: -Werror | ||
// minimisation of a regression that occurred in bootstrapping | ||
class Test: | ||
def t(a: Boolean, b: Boolean) = (a, b) match | ||
case (false, false) => 1 | ||
case (false, true ) => 2 | ||
case (true, false) => 3 | ||
case (true, true ) => 4 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
// scalac: -Werror | ||
|
||
// Like tests/pos/i15029.scala, | ||
// but with a more complicated prefix | ||
// and Schema[String] | ||
|
||
sealed trait Schema[A] | ||
|
||
sealed class Universe: | ||
sealed trait Instances[B]: | ||
case class Field() extends Schema[B] | ||
case object Thing extends Schema[B] | ||
|
||
object Universe1 extends Universe | ||
object Universe2 extends Universe | ||
|
||
object Ints extends Universe1.Instances[Int] | ||
object Strs extends Universe2.Instances[String] | ||
|
||
// Match not exhaustive error! (with fatal warnings :P) | ||
class Test: | ||
def handle(schema: Schema[String]) = | ||
schema match // was: match may not be exhaustive | ||
case Strs.Field() => | ||
case Strs.Thing => |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
// scalac: -Werror | ||
sealed trait Schema[A] | ||
|
||
object Schema extends RecordInstances | ||
|
||
sealed trait RecordInstances: | ||
case class Field[A]() extends Schema[A] | ||
case object Thing extends Schema[Int] | ||
|
||
import Schema._ | ||
|
||
// Match not exhaustive error! (with fatal warnings :P) | ||
def handle[A](schema: Schema[A]) = | ||
schema match | ||
case Field() => println("field") | ||
case Thing => println("thing") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
// scalac: -Werror | ||
sealed trait Schema[A] | ||
|
||
sealed trait RecordInstances: | ||
case class Field[B]() extends Schema[B] | ||
case object Thing extends Schema[Int] | ||
|
||
object X extends RecordInstances | ||
object Y extends RecordInstances | ||
|
||
// Match not exhaustive error! (with fatal warnings :P) | ||
class Test: | ||
def handle[T](schema: Schema[T]) = | ||
schema match // was: match may not be exhaustive | ||
case X.Field() => | ||
case X.Thing => | ||
case Y.Field() => | ||
case Y.Thing => |