ITADN

resumable function with splatted keyword args does not work, e.g. `@resumable function f(a...; kw...)`

#135OpenKrastanov 创建于 2025-09-07
K
Krastanovcommented
``` 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) ```
0 条评论