From 6194cb7e24316bfed20d6119e04078864fb0ac44 Mon Sep 17 00:00:00 2001 From: Shuhei Kadowaki Date: Thu, 5 Dec 2024 18:08:58 +0900 Subject: [PATCH] fixup!: JuliaLang/julia#56756 We need to quote it, otherwise it would result in `UnderVarError`. --- Compiler/src/Compiler.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Compiler/src/Compiler.jl b/Compiler/src/Compiler.jl index ddcea8a6c5cbb..8dd15462ed998 100644 --- a/Compiler/src/Compiler.jl +++ b/Compiler/src/Compiler.jl @@ -183,7 +183,7 @@ include("opaque_closure.jl") macro __SOURCE_FILE__() __source__.file === nothing && return nothing - return __source__.file::Symbol + return QuoteNode(__source__.file::Symbol) end module IRShow end