mirror of
https://github.com/idris-lang/Idris2.git
synced 2024-12-19 09:12:34 +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 ()
|