-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
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
isdispatchtuple inconsistency for typeof(Union{})
#45347
Comments
Keno
added a commit
that referenced
this issue
May 18, 2022
We have `typeof(Union{}) == Type{Union{}}`, but were treating them differently in the calculation of `isdispatchtuple`. The compiler expects `isdispatchtuple` to commute with type equality in various places, so try to make this consistent. Fixes #45347
Keno
added a commit
that referenced
this issue
May 22, 2022
We have `typeof(Union{}) == Type{Union{}}`, but were treating them differently in the calculation of `isdispatchtuple`. The compiler expects `isdispatchtuple` to commute with type equality in various places, so try to make this consistent. Fixes #45347
pchintalapudi
pushed a commit
that referenced
this issue
May 25, 2022
We have `typeof(Union{}) == Type{Union{}}`, but were treating them differently in the calculation of `isdispatchtuple`. The compiler expects `isdispatchtuple` to commute with type equality in various places, so try to make this consistent. Fixes #45347
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This was the root cause of one of the PkgEval failures in #45272.
The text was updated successfully, but these errors were encountered: