summaryrefslogtreecommitdiff
path: root/testsuite/tests/printer/Ppr030.hs
blob: 84364c0bea3907e5771ea2747586b95c7daf5a81 (plain)
1
2
3
4
5
6
7
8
9
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