The following example is from "A gentle introduction to Haskell 98" by Hudak, Peterson and Fasel:
data Point a = Pt a a
What is this `Pt'? Where does it come from? What does it mean? Has it been defined previously, or are we defining it here? It appears suddenly in the text, has not been mentioned before, and a google for "Pt Haskell" returns Haskell documentation in Portugese ;-)
Edit: thanks to the reply from @unhammer, I now see that this answer to another question explains the problem really well: here