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
import Data.Vect
data VT : Vect m Nat -> Type where
Nil : VT []
(::) : Vect n t -> VT v -> VT (n :: v)
MatType : (hm : VT v) -> Type
MatType hm = ?MatType_rhs
The following is a seven-line example.
Steps to Reproduce
First
:set showimplicits
, then:cs
on hm,Expected Behavior
Observed Behavior
Produces
or something equivalent. Both the len argument and the
::
not being in parens seem incorrect.The text was updated successfully, but these errors were encountered: