summaryrefslogtreecommitdiff
path: root/testsuite/tests/indexed-types/should_compile/IndTypesPerf.hs
blob: 4edcd0398875e231a5c84427009fedca990ae8f9 (plain)
1
2
3
4
5
6
7
8
9
10
11

-- This used lots of memory, and took a long time to compile, with GHC 6.12:
-- http://www.haskell.org/pipermail/glasgow-haskell-users/2010-May/018835.html

module IndTypesPerf where

import IndTypesPerfMerge

data Rec1 = Rec1 !Int

mkRec1 v = mk $ merge v () where mk (Tagged i :* ()) = Rec1 i