In GHCi the following code works fine:
f1 :: Float
f1 = f2
-- f2 :: Float
f2 = 1/1
But in Hugs, I get a type error - it wants to be a Double. When I uncomment the type signature of f2, it works fine.
Shouldn't exactly this be taken care of the type inference?
Is this a bug in Hugs?
I checked out the type of / and the instances of Double and Float - / works on Fractionals, and there is a Fractional instance for both Double and Float, so this should not be the problem.
