1
1
mirror of https://github.com/github/semantic.git synced 2024-11-28 18:23:44 +03:00
semantic/test/fixtures/haskell/corpus/gadt-declarations.A.hs
2018-06-06 16:53:48 -07:00

13 lines
354 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