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.
1 parent b9f74ce commit 34cedf8Copy full SHA for 34cedf8
src/stage1/recurse_fwd.jl
@@ -48,7 +48,7 @@ end
48
49
_construct(::Type{B}, args) where B<:Tuple = B(args)
50
# Hack for making things that do not have public constructors constructable:
51
-@generated _construct(B::Type, args) = :($(Expr(:splatnew, :B, :args)))
+@generated _construct(B::Type, args) = Expr(:splatnew, :B, :args)
52
53
@generated (::∂☆new{N})(B::Type) where {N} = return :(ZeroBundle{$N}($(Expr(:new, :B))))
54
0 commit comments