packages feed

agda-unused-0.2.0: data/declaration/DataDef.agda

module DataDef where

data ⊤
  : Set
  where

  tt
    : ⊤

data ⊤'
  (x : ⊤)
  : Set
  where

  tt
    : ⊤' x

data D
  {y : ⊤}
  (y' : ⊤' y)
  : Set

data D {z} _ where

postulate

  d
    : D tt