Here's a short transcript from GHCi:
Prelude> :t read
read :: Read a => String -> a
Prelude> :t show
show :: Show a => a -> String
Prelude> :t show.read
show.read :: String -> String
Prelude> (show.read) "whales"
"*** Exception: Prelude.read: no parse
When I compose show and read I can only assume that GHC chose some arbitrary type which is both Readable and Showable to be the "intermediate" type.
How did it choose this type, and is there any way for me to find out what it is?