-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Handle sealed prefixes in exh checking #16621
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
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 => |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.