1 2 3 4 5 6 7 8 9 10 11
{-# LANGUAGE GADTs #-} module ShouldCompile where data T a where C :: Int -> T Int D :: Bool -> T Bool foo :: T a -> a foo (C x) = x foo (D x) = x