summaryrefslogtreecommitdiff
path: root/testsuite/tests/gadt/T3638.hs
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/tests/gadt/T3638.hs')
-rw-r--r--testsuite/tests/gadt/T3638.hs1
1 files changed, 1 insertions, 0 deletions
diff --git a/testsuite/tests/gadt/T3638.hs b/testsuite/tests/gadt/T3638.hs
index abb6a86169..c299fa9637 100644
--- a/testsuite/tests/gadt/T3638.hs
+++ b/testsuite/tests/gadt/T3638.hs
@@ -5,6 +5,7 @@ module T3638 where
data T a where TInt :: T Int
foo :: T Int -> Int
+{-# NOINLINE [1] foo #-}
foo TInt = 0
{-# RULES "foo" forall x. foo x = case x of { TInt -> 0 } #-}