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
eval: (a -> b) -> a -> b
eval f x = f x
-- 1 2 3 4-- (hover @ 1) f : ?_ -> ?_-- (hover @ 2) x : ?_ [no locals in scope]-- (hover @ 3) f : a -> b-- (hover @ 4) x : a
The ?_ holes are not too helpful, rather I would expect hovering 1 to show the same result as 3 and hovering 2 to show the same result as 4.
The text was updated successfully, but these errors were encountered:
Consider the following code:
The
?_
holes are not too helpful, rather I would expect hovering1
to show the same result as3
and hovering2
to show the same result as4
.The text was updated successfully, but these errors were encountered: