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
IsReflexive: Rel a ->TypeIsReflexive {a} r = {x: a} -> x `r` x
lteIsReflexive: IsReflexive LTE
lteIsReflexive =?lteIsReflexive_rhs
If I hit :p lteIsReflexive_rhs, I can see and use the x, but if I write
lteIsReflexive {x} =?lteIsReflexive_rhs
I get an error:
builtin:0:0:When elaborating left hand side of lteIsReflexive:
Can't unify
LTE x x (Type of lteIsReflexive x)
with
argTy ->
retTy (Is lteIsReflexive x applied to too many arguments?)
Specifically:
Can't unify
LTE x
with
\uv => argTy -> uv
I wonder if this might be related to #2211 or #2186.
The text was updated successfully, but these errors were encountered:
If I hit
:p lteIsReflexive_rhs
, I can see and use thex
, but if I writeI get an error:
I wonder if this might be related to #2211 or #2186.
The text was updated successfully, but these errors were encountered: