summaryrefslogtreecommitdiff
path: root/testsuite/tests/codeGen/should_run/cgrun049.hs
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/tests/codeGen/should_run/cgrun049.hs')
-rw-r--r--testsuite/tests/codeGen/should_run/cgrun049.hs22
1 files changed, 22 insertions, 0 deletions
diff --git a/testsuite/tests/codeGen/should_run/cgrun049.hs b/testsuite/tests/codeGen/should_run/cgrun049.hs
new file mode 100644
index 0000000000..d4b6a77908
--- /dev/null
+++ b/testsuite/tests/codeGen/should_run/cgrun049.hs
@@ -0,0 +1,22 @@
+-- !! Data constructors with strict fields
+-- This test should use -funbox-strict-fields
+
+module Main ( main ) where
+
+main = print (g (f t))
+
+t = MkT 1 2 (3,4) (MkS 5 6)
+
+g (MkT x _ _ _) = x
+
+data T = MkT Int !Int !(Int,Int) !(S Int)
+
+data S a = MkS a a
+
+
+{-# NOINLINE f #-}
+f :: T -> T -- Takes apart the thing and puts it
+ -- back together differently
+f (MkT x y (a,b) (MkS p q)) = MkT a b (p,q) (MkS x y)
+
+