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
julia> @resumable function f(a...; k...)
@yield a
@yield k
end
ERROR: LoadError: syntax: invalid "..." on non-final argument
Stacktrace:
[1] top-level scope
@ none:1
in expression starting at REPL[3]:1
julia> function f(a...; k...)
return a,k
end
f (generic function with 1 method)