packages feed

Agda-2.3.2.2: test/fail/Issue476c.agda

-- Abstract constructors
module Issue476c where

module M where
  data D : Set

  abstract
    data D where
      c : D

x : M.D
x = M.c