Skip to content

Commit

Permalink
fixup!: #56756
Browse files Browse the repository at this point in the history
We need to quote it, otherwise it would result in `UnderVarError`.
  • Loading branch information
aviatesk committed Dec 5, 2024
1 parent 8aac4cc commit 6194cb7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Compiler/src/Compiler.jl
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 6194cb7

Please sign in to comment.