ref: 5e4f9f0a07f9f3dfc9616dabdc4b720a995ff48b 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