mirror of
https://github.com/idris-lang/Idris2.git
synced 2024-12-20 18:21:47 +03:00
9 lines
152 B
Idris
9 lines
152 B
Idris
|
module Issue660
|
||
|
|
||
|
%default total
|
||
|
|
||
|
data Sig : (a : Type) -> (a -> Type) -> Type where
|
||
|
|
||
|
data Value : Unit -> Type where
|
||
|
MkV : Sig Unit Value -> Value ()
|