In GHCi the following works just dandy:
let (≠) = (/=)
But trying to compile this from a source file results in an error:
(≠) = (/=)
Here is the error, for reference:
"Ambiguous type variable 'a0' arising from a use of '/=' prevents the constraint '(Eq a0)' from being solved."
What am I doing wrong?