Skip to content

Commit cdce3af

Browse files
authored
Merge pull request #18572 from TotalVerb/fw/fix-18467-regression
Fix Tuple inference regression from #18467
2 parents 2acf47d + 75ec75c commit cdce3af

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

base/inference.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,7 @@ isType(t::ANY) = isa(t,DataType) && is((t::DataType).name,Type.name)
246246
# true if Type is inlineable as constant
247247
isconstType(t::ANY,b::Bool) =
248248
isType(t) && !has_typevars(t.parameters[1],b) &&
249-
!issubtype(Tuple{Vararg}, t.parameters[1]) # work around inference bug #18450
249+
!issubtype(Type{Tuple{Vararg}}, t) # work around inference bug #18450
250250

251251
const IInf = typemax(Int) # integer infinity
252252
const n_ifunc = reinterpret(Int32,arraylen)+1

test/inference.jl

+3
Original file line numberDiff line numberDiff line change
@@ -368,3 +368,6 @@ end
368368
# issue #18450
369369
f18450() = ifelse(true, Tuple{Vararg{Int}}, Tuple{Vararg})
370370
@test f18450() == Tuple{Vararg{Int}}
371+
372+
# issue #18569
373+
@test Core.Inference.isconstType(Type{Tuple},true)

0 commit comments

Comments
 (0)