We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
==
deepcopy(::QuoteNode)
1 parent 3b14198 commit 1c5e32dCopy full SHA for 1c5e32d
test/interpret.jl
@@ -559,7 +559,8 @@ end
559
560
# https://github.com/JuliaDebug/JuliaInterpreter.jl/issues/154
561
q = QuoteNode([1])
562
-@test @interpret deepcopy(q) == q
+qcopy = @interpret deepcopy(q)
563
+@test isa(qcopy, QuoteNode) && qcopy.value == q.value
564
565
# Check #args for builtins (#217)
566
f217() = <:(Float64, Float32, Float16)
0 commit comments