summaryrefslogtreecommitdiff
path: root/testsuite/tests/ghc-regress/gadt/gadt3.hs
blob: b58301e1312609b3f8c7255ba3eda71795cca675 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{-# LANGUAGE GADTs #-}

module ShouldCompile where

data T where
  T1 :: Int -> T
  T2 :: Bool -> Bool -> T

data S a where
  S1 :: a -> S a
  S2 :: Int -> S Int

f (T1 i) = i>0
f (T2 a b) = a && b

g :: S a -> a
g (S1 x) = x
g (S2 i) = i