mirror of
https://github.com/github/semantic.git
synced 2024-11-28 18:23:44 +03:00
13 lines
354 B
Haskell
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
|