Open Krastanov opened 1 year ago
a few more unsupported let
forms
julia> @resumable function f()
let i=1, j=2
i+j
end
end
ERROR: type Int64 has no field value
julia> @resumable function f()
i=1
j=2
let i=i, j=j
i+j
end
end
ERROR: type Expr has no field value