summaryrefslogtreecommitdiff
path: root/testsuite/tests/printer/Ppr030.hs
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/tests/printer/Ppr030.hs')
-rw-r--r--testsuite/tests/printer/Ppr030.hs10
1 files changed, 10 insertions, 0 deletions
diff --git a/testsuite/tests/printer/Ppr030.hs b/testsuite/tests/printer/Ppr030.hs
new file mode 100644
index 0000000000..84364c0bea
--- /dev/null
+++ b/testsuite/tests/printer/Ppr030.hs
@@ -0,0 +1,10 @@
+{-# RULES
+ "cFloatConv/Float->Float" forall (x::Float). cFloatConv x = x;
+ "cFloatConv/Double->Double" forall (x::Double). cFloatConv x = x;
+ "cFloatConv/Float->CFloat" forall (x::Float). cFloatConv x = CFloat x;
+ "cFloatConv/CFloat->Float" forall (x::Float). cFloatConv CFloat x = x;
+ "cFloatConv/Double->CDouble" forall (x::Double). cFloatConv x = CDouble x;
+ "cFloatConv/CDouble->Double" forall (x::Double). cFloatConv CDouble x = x
+ #-};
+
+cFloatConv = undefined