-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Fix #6314: match type unsoundness #6319
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 2 commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
df1bf4d
Use .zipped.forall instead zip_zip_forall
OlivierBlanvillain f889bf8
Don't assume types in & are sorted
OlivierBlanvillain 992150b
Update exhaustivity tests for loosen rules
OlivierBlanvillain be29f14
Remove EqualsPatternClass
OlivierBlanvillain 1fc0059
Special case intersecting for Singleton
OlivierBlanvillain 7e669b7
Don't special case bottom
OlivierBlanvillain 3f89e4c
Speed up runtime test
OlivierBlanvillain ace48a2
Add a subtype check with Wildcard types
OlivierBlanvillain 0cec095
Add test cases from #6314
OlivierBlanvillain 96bd9db
Refactor intersecting as disjoint
OlivierBlanvillain 74ca923
Follow type aliases in widenAbstractTypes
OlivierBlanvillain 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,4 +11,4 @@ package object compiletime { | |
inline def constValue[T]: T = ??? | ||
|
||
type S[X <: Int] <: Int | ||
} | ||
} |
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,14 @@ | ||
object G { | ||
final class X | ||
final class Y | ||
|
||
trait Test { | ||
type Type | ||
val i: Bar[Y & Type] = 1 // error | ||
} | ||
|
||
type Bar[A] = A match { | ||
case X & Y => String | ||
case Y => Int | ||
} | ||
} |
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 |
---|---|---|
|
@@ -94,4 +94,4 @@ object Test extends App { | |
val us0: 0 = size(()) | ||
val x3s1: 3 = size0(x3) | ||
val us1: 0 = size0(()) | ||
} | ||
} |
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.