packages feed

purescript-0.7.0.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 = Debug.Trace.trace "Done"