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
and func_type = FuncT of result_type * result_type
and cont_type = ContT of heap_type
My question is: why is cont_type defined this way. This syntactically permits invalid forms of continuation types. Why isn't it the same as a func_type:
and func_type = FuncT of result_type * result_type
and cont_type = ContT of result_type * result_type