ref: 4bdb0c1286e7999f0dda6df5160337c02bc089b3 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