-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix accidental recursion in jl_concrete_subtype
jl_concrete_subtype was recursing into the vararg element of a tuple, which I don't think is correct (because it could be zero-length and thus be constructible even if the element type is not). Fix that and as a bonus get we are now able to get rid of the previous condition that (accidentally) special cased tuples to have that behavior. Fixes #31062
- Loading branch information
Showing
2 changed files
with
9 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