-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Fix #8647: Remove TypeParamRef from instantiated test #8704
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
final class Two[A, B]() | ||
|
||
final class Blaaa | ||
|
||
final class Bla[X] | ||
|
||
object Test1 { | ||
|
||
type Foo[X] = X match | ||
case Two[Blaaa, _] => | ||
String | ||
case Two[String, _] => | ||
Int | ||
|
||
def test: Foo[Two[String, String]] = 1 | ||
} | ||
|
||
object Test2 { | ||
type Foo[X] = X match | ||
case Two[Bla[_], _] => | ||
String | ||
case Two[String, _] => | ||
Int | ||
|
||
def test: Foo[Two[String, String]] = 1 | ||
} | ||
|
||
|
||
object Test3 { | ||
type Id[W] = W | ||
|
||
type M[X, Y] = X match { | ||
case Int => String | ||
case Id[x] => Y match { | ||
case Two[Bla[a], _] => Int | ||
case _ => String | ||
} | ||
} | ||
val x: M[Boolean, Two[Boolean, Boolean]] = "" | ||
} | ||
|
||
object Test4 { | ||
type Id[W] = W | ||
|
||
type M[X, Y] = X match { | ||
case Int => String | ||
case Id[x] => Y match { | ||
case Two[Bla[`x`], _] => Int | ||
case _ => String | ||
} | ||
} | ||
val x: M[Boolean, Two[Bla[Boolean], Boolean]] = 1 | ||
} |
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't understand the comment above: "We can only trust a "no" from
isSameType
when botharg1
andarg2
are fully instantiated.". What does "trust" mean here?isSameType(tp1, tp2)
returning false means "I wasn't able to prove that tp1 and tp2 are the same type", having or not having type variables in these types does not change that.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It means we interpret
!isSameType(A, B)
as "A
andB
are definetly different type" when the conditions in&& { ... }
are met. The alternative would be to write another recursive methodprovablyNotSameType
in the same style asprovablyDisjoint
that would be used here to draw disjointness conclusions from invarant type parameters.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Unfortunately that's not true, even if you exclude type variables, type parameters and abstract types. For example
Nothing
andInt & String
are the same type, but the compiler doesn't know that andisSameType
will return false.That seems like a good way forward yeah.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It looks like scalac has something like this for deciding if it needs to emit an unchecked type test warning, this could be a good inspiration: https://github.com/scala/scala/blob/dfb8f7364a56fc01ad1eaea57980fba586ef6914/src/compiler/scala/tools/nsc/typechecker/Checkable.scala#L275
(we may in fact want to use this in our own unchecked type tests which are currently pretty broken: #8808)