ref: 6ee5b5e8428ca78ea1d5a675fb34ccc5b36ef680 dir: /tests/PatBind.hs/
module PatBind where Just x = Just () y,z :: Int (y,z) = (20,30) u :: Int (u, v) = (40, True) main :: IO () main = do print x print y print z print u print v