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
error: mismatched types: expected fn@(&&<V1>) but found native fn(str) (expected argument mode ++ but found &&)
This arose when passing a fn(str) as an argument to a function expecting fn@(T). No explicit argument mode annotation was used.
note the contradiction: "expected ..&&.." at first followed by "expected ..++.." later. Patrick seems to think they must be referring to the same thing (the argument of the function being passed) because it wouldn't come up without higher-order arguments.