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
Not sure whether this is known behaviour, but compileing the following example doesn't terminate (it checks fine)
dataNatwhereZero:NatSucc:Nat->NatPair:Type->Type->TypedataPair a b whereMkPair: a -> b -> Pair a b
dataUnitwhereMkUnit: Unit
Vector:Nat->Type->TypeVectorZero_=UnitVector (Succ n) a =Pair a (Vector n a)
The text was updated successfully, but these errors were encountered:
Hey, and thanks for reaching out! The backend is quite unfinished, so I'm not too surprised at this stage. Most of my effort has gone into the type checker so far, but I'm hoping to do more work on the backend eventually. :)
Not sure whether this is known behaviour, but
compile
ing the following example doesn't terminate (itcheck
s fine)The text was updated successfully, but these errors were encountered: