You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I ran into a quick issue in one of the first few tests of @check_allocs I did. I think the MWE is pretty self-explanatory.
julia>@check_allocsg(args...; kwargs...) =f(args...; kwargs...)
ERROR: syntax: invalid "..." on non-final argument around /home/tec/.julia/packages/AllocCheck/xTVrb/src/macro.jl:153
Stacktrace:
[1] top-level scope
@ REPL[2]:1
Interestingly it seems fine if I only splat args or kwargs
julia>@check_allocsg(; kwargs...) =f(; kwargs...)
g (generic function with 1 method)
julia>@check_allocsg(args...) =f(args...)
g (generic function with 2 methods)
The text was updated successfully, but these errors were encountered:
I ran into a quick issue in one of the first few tests of
@check_allocs
I did. I think the MWE is pretty self-explanatory.Interestingly it seems fine if I only splat
args
orkwargs
The text was updated successfully, but these errors were encountered: