ref: dda68ddb858f384a2d660af1f46b9f928bb048fb dir: /tests/Default.hs/
module Default(main) where import Prelude default (Int, Double) main :: IO () main = do print 1 print 1.5 print [] -- defaults to Int, a little weird