ref: 37a178d694b1d62b93c38ea883c9b2df2c632f25 dir: /tests/Default.hs/
module Default(main) where import Prelude default Num (Int, Double) default IsString (String) default Show (()) main :: IO () main = do print 1 print 1.5 print [] print "foo"