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
test1 a
= let { x } = a
in x -- parse error from here
test2 a
= let { x: y } = a
in y -- parse error from here
test3 a
= case a of
{ x }
-> x -- parse error from here
test4 a
= case a of
{ x: y }
-> y -- parse error from here