Skip to content

Commit 91463b8

Browse files
committed
fix typo
1 parent 0bb4275 commit 91463b8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

base/compiler/inferenceresult.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ function compute_inf_result_argtypes(linfo::MethodInstance, caller_argtypes = no
2323
nargs::Int = toplevel ? 0 : linfo.def.nargs
2424
if !toplevel && caller_argtypes !== nothing
2525
for i in 1:length(caller_argtypes)
26-
a = maybe_widen_conditional(given_argtypes[i])
26+
a = maybe_widen_conditional(caller_argtypes[i])
2727
if i > length(given_argtypes)
2828
push!(given_argtypes, a)
2929
elseif a isa Const

0 commit comments

Comments
 (0)