summaryrefslogtreecommitdiff
path: root/testsuite/tests/simplCore/should_compile/T23307.hs
blob: 3cc6f676adb730ccc2ac363ec6504a9d1f1b9a71 (plain)
1
2
3
4
5
module T23307 where

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