summaryrefslogtreecommitdiff
path: root/testsuite/tests/gadt/T7321a.hs
blob: 14d22a9696e822b6fce5190e00f339d4410c3727 (plain)
1
2
3
4
5
{-# LANGUAGE GADTs #-}
module T7321a where

data Exp a where
   LamE :: (Exp a -> Exp b) -> Exp (Exp a -> Exp b)