summaryrefslogtreecommitdiff
path: root/testsuite/tests/simplCore/should_compile/T23307a.hs
blob: f02fee86b426d917c4c4120927e3f83030cdfe26 (plain)
1
2
3
4
5
6
7
module T23307a where

data List a = Nil | Cons {-# UNPACK #-} !(Unconsed a)
                    -- This UNPACK should work

data Unconsed a = Unconsed a !(List a)
data MUnconsed a = No | Yes {-# UNPACK #-} !(Unconsed a)