I can't figure out why this doesn't work:
julia> macro outer()
quote
macro inner()
end
@inner
end
endjulia> @outer ERROR: UndefVarError: @inner not defined Could it be a bug (I'm on 0.5) or am I missing something about how macros work?
