2018-06-05 22:26:42 +03:00
|
|
|
data Foo a b c where
|
2018-06-06 02:01:56 +03:00
|
|
|
Baz :: a -> b -> c -> Foo a b c
|
2018-06-07 00:42:25 +03:00
|
|
|
|
|
|
|
data Foo f a where
|
|
|
|
Bar :: { jolo :: Maybe String, runJolo :: f a } -> Foo f a
|
2018-06-07 01:41:57 +03:00
|
|
|
|
|
|
|
data Foo a :: [*] -> * where
|