summaryrefslogtreecommitdiff
path: root/testsuite/tests/simplCore/should_compile/T8196.hs
blob: 1dd4ea9fcada5a7853d73d23342ee369233eff7e (plain)
1
2
3
4
5
6
7
8
{-# LANGUAGE PolyKinds #-}
{-# OPTIONS_GHC -dcore-lint -O #-}
module T8196 where

data T a b = MkT (a b)
   deriving Show

foo = print (MkT (Just True))