1
1
mirror of https://github.com/github/semantic.git synced 2024-11-24 08:54:07 +03:00
semantic/test/fixtures/haskell/corpus/gadt-declarations.A.hs
2018-06-06 17:03:27 -07:00

16 lines
450 B
Haskell

data Foo a b c where
Baz :: a -> b -> c -> Foo a b c
data Foo f a where
Bar :: { jolo :: Maybe String, runJolo :: f a } -> Foo f a
data Foo a :: [*] -> * where
data Number a where
Integer :: !Prelude.Integer -> Number Prelude.Integer
Ratio :: !Prelude.Rational -> Number Prelude.Rational
Decimal :: !Scientific -> Number Scientific
data Union (r :: [ * -> * ]) (v :: *) where
Union :: {-# UNPACK #-} !Int -> t v -> Union r v