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
Lambda functions work fine, while the same do-block throws an error:
julia>using Test
julia>@inferredmap(x->x, [1,2])
2-element Vector{Int64}:12
julia>@inferredmap([1,2]) do x
x
end
ERROR: LoadError:@inferred requires a call expression