summaryrefslogtreecommitdiff
path: root/testsuite/tests/gadt/gadt14.hs
blob: 5f6e9fa690602caf0894ab7a3dde9ca479e0a69a (plain)
1
2
3
4
5
6
7
8
{-# LANGUAGE GADTs #-}

-- Check that trailing parens are ok in data con signatures

module ShouldCompile where

data T where
   MkT :: Int -> (Int -> T)