packages feed

purescript-0.7.2.0: examples/passing/TypeSynonymInData.purs

module Main where

import Prelude

type A a = Array a

data Foo a = Foo (A a) | Bar

foo (Foo []) = Bar

main = Control.Monad.Eff.Console.log "Done"