Skip to content

Commit 3a3926e

Browse files
authored
fix opaque_closure sparam capture (#57928)
Fix #54236 Fix #54357
1 parent 89271dc commit 3a3926e

File tree

2 files changed

+18
-0
lines changed

2 files changed

+18
-0
lines changed

src/julia-syntax.scm

+1
Original file line numberDiff line numberDiff line change
@@ -4109,6 +4109,7 @@ f(x) = yt(x)
41094109
(capt-var-access v fname opaq)
41104110
v)))
41114111
cvs)))
4112+
(set-car! (cdddr (lam:vinfo lam2)) '()) ;; must capture static_parameters as values inside opaque_closure
41124113
`(new_opaque_closure
41134114
,(cadr e) ,(or (caddr e) '(call (core apply_type) (core Union))) ,(or (cadddr e) '(core Any)) ,allow-partial
41144115
(opaque_closure_method (null) ,nargs ,isva ,functionloc ,(convert-lambda lam2 (car (lam:args lam2)) #f '() (symbol-to-idx-map cvs) parsed-method-stack))

test/opaque_closure.jl

+17
Original file line numberDiff line numberDiff line change
@@ -390,3 +390,20 @@ let ir = first(only(Base.code_ircode(sin, (Int,))))
390390
oc = Core.OpaqueClosure(ir; do_compile=false)
391391
@test oc(1) == sin(1)
392392
end
393+
394+
function typed_add54236(::Type{T}) where T
395+
return @opaque (x::Int)->T(x) + T(1)
396+
end
397+
let f = typed_add54236(Float64)
398+
@test f isa Core.OpaqueClosure
399+
@test f(32) === 33.0
400+
end
401+
402+
f54357(g, ::Type{AT}) where {AT} = Base.Experimental.@opaque AT->_ (args...) -> g((args::AT)...)
403+
let f = f54357(+, Tuple{Int,Int})
404+
@test f isa Core.OpaqueClosure
405+
@test f(32, 34) === 66
406+
g = f54357(+, Tuple{Float64,Float64})
407+
@test g isa Core.OpaqueClosure
408+
@test g(32.0, 34.0) === 66.0
409+
end

0 commit comments

Comments
 (0)