packages feed

haskell-tools-refactor-1.0.1.1: examples/Decl/DataFamily.hs

{-# LANGUAGE TypeFamilies #-}
module Decl.DataFamily where

data family Array :: * -> *

data instance Array () = UnitArray Int deriving Show