ref: 08a727c87c4c642bfc3c609c295369f9d70c0d62 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"