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
f:LazyBool->Bool
f x@True= x
f x@False= x
failing "While processing right hand side of g. Patterns for case block in g require matching on different types."g:LazyBool->Bool
g b =case b of
x@True=> x
x@False=> x
h:LazyBool->Bool
h b =case b ofDelay x@True=> x
Delay x@False=> x
Expected Behavior
g is defined correctly
Observed Behavior
g is incorrect while f and h is correct
The text was updated successfully, but these errors were encountered:
Steps to Reproduce
Expected Behavior
g
is defined correctlyObserved Behavior
g
is incorrect whilef
andh
is correctThe text was updated successfully, but these errors were encountered: