mirror of
https://github.com/idris-lang/Idris2.git
synced 2024-12-17 00:10:31 +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 ()
|