<div style='font-family:Arial; font-size:13px;'>hi,<div><br></div><div>Prelude> u = undefined</div><div>Prelude> k :: (Ord a, Num b) => a -> b -> a; k = u</div><div><br></div><div>Prelude> :t k 1 2 </div><div>k 1 2 :: (Ord a, Num a) => a</div><div><br></div><div>Prelude> :t k (1 :: Integer) 2</div><div>k (1 :: Integer) 2 :: Integer</div><div><br></div><div>In the first version the compiler is not really pushed so it simply gives back the type class constriction it has to adhere to. While in the second it is pushed to give an more specific answer and thus the :: Integer.</div><div><br></div><div>Question:</div><div>Is this train of thought correct? </div><div><br><br><div><div style="font-family:Arial; font-size:13px;"><br></div></div></div></div>