From 0713d99aafee6fa3f9014170b502345a3cf9aede Mon Sep 17 00:00:00 2001 From: Avik Pal Date: Wed, 18 Dec 2024 21:27:17 +0530 Subject: [PATCH] fix: missing interpolation in compile (#394) --- src/Compiler.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Compiler.jl b/src/Compiler.jl index cc32a90b1..074dabf90 100644 --- a/src/Compiler.jl +++ b/src/Compiler.jl @@ -624,7 +624,7 @@ function codegen_unflatten!( if path[2:end] == argpath[2:end] continue end - res = :(args[path[2]]) + res = :(args[$(path[2])]) path = path[3:end] end for p in path