ref: 37a178d694b1d62b93c38ea883c9b2df2c632f25 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