Well, it's not part of the Haskell 2010 standard, so it's not on by default, and is offered as a language extension instead. As for why it's not in the standard, rank-n types are quite a bit harder to implement than the plain rank-1 types standard Haskell has; they're also not needed all that frequently, so the Committee likely decided not to bother with them for reasons of language and implementation simplicity.
Of course, that doesn't mean rank-n types aren't useful; they are, very much so, and without them we wouldn't have valuable tools like the ST monad (which offers efficient, local mutable state — like IO where all you can do is use IORefs). But they do add quite a bit of complexity to the language, and can cause strange behaviour when applying seemingly benign code transformations. For instance, some rank-n type checkers will allow runST (do { ... }) but reject runST $ do { ... }, even though the two expressions are always equivalent without rank-n types. See this SO question for an example of the unexpected (and sometimes annoying) behaviour it can cause.
If, like sepp2k asks, you're instead asking why forall has to be explicitly added to type signatures to get the increased generality, the problem is that (forall x. x -> f x) -> (a, b) -> (f a, f b) is actually a more restrictive type than (x -> f x) -> (a, b) -> (f a, f b). With the latter, you can pass in any function of the form x -> f x (for any f and x), but with the former, the function you pass in must work for all x. So, for instance, a function of type String -> IO String would be a permissible argument to the second function, but not the first; it'd have to have the type a -> IO a instead. It would be pretty confusing if the latter was automatically transformed into the former! They're two very different types.
It might make more sense with the implicit foralls made explicit:
forall f x a b. (x -> f x) -> (a, b) -> (f a, f b)
forall f a b. (forall x. x -> f x) -> (a, b) -> (f a, f b)
(x -> f x) -> (a,b) -> (f a, f b)isn't treated the same as(forall x. x -> f x) -> (a, b) -> (f a, f b)? If it's the latter, can you specify the logic by which you propose the compiler should decide where to insert theforalls? – sepp2k Apr 12 '12 at 18:05(x -> f x) -> (a, b) -> (f a, f b)is fairly useless. The function can't apply the first argument to either element of the tuple, so its result must be either⊥or(⊥, ⊥). – hammar Apr 13 '12 at 0:42