summaryrefslogtreecommitdiff
path: root/testsuite/tests/ghci/scripts/T13699.hs
blob: 0579399be09e56d0f687c595894680825a5c8eaa (plain)
1
2
3
4
5
6
7
8
9
10
module T13699 where

data Foo = Foo
  { foo1 :: Int
  , foo2 :: !Int
  , foo3 :: Maybe Int
  , foo4 :: !(Maybe Int)
  }

data Bar = Bar Int !Int (Maybe Int) !(Maybe Int)