Skip to content

Commit f9ebc94

Browse files
authored
Re-fix #288 (#305)
1 parent f44a2c7 commit f9ebc94

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/interpret.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ function evaluate_call_recurse!(@nospecialize(recurse), frame::Frame, call_expr:
229229
if lenv === nothing
230230
if isa(framecode, Compiled)
231231
popfirst!(fargs) # now it's really just `args`
232-
return f(fargs...)
232+
return Base.invokelatest(f, fargs...)
233233
end
234234
return framecode # this was a Builtin
235235
end

0 commit comments

Comments
 (0)