summaryrefslogtreecommitdiff
path: root/testsuite/tests/ghc-regress/simplCore/should_run/SeqRule.hs
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/tests/ghc-regress/simplCore/should_run/SeqRule.hs')
-rw-r--r--testsuite/tests/ghc-regress/simplCore/should_run/SeqRule.hs16
1 files changed, 0 insertions, 16 deletions
diff --git a/testsuite/tests/ghc-regress/simplCore/should_run/SeqRule.hs b/testsuite/tests/ghc-regress/simplCore/should_run/SeqRule.hs
deleted file mode 100644
index b1569efd7b..0000000000
--- a/testsuite/tests/ghc-regress/simplCore/should_run/SeqRule.hs
+++ /dev/null
@@ -1,16 +0,0 @@
-
--- This test checks that the magic treatment of RULES
--- for 'seq' works right.
---
--- See Note [RULES for seq] in MkId for more details
-
-module Main where
-
-{-# NOINLINE f #-}
-f x = not x
-
-{-# RULES
- "f/seq" forall n e. seq (f n) e = True
- #-}
-
-main = print (seq (f True) False)