ref: ff8c6e91a7c2369b3e8806ed460b4bf9b4bf6bae dir: /tests/BindPat.hs/
module BindPat(main) where import Prelude foo :: [Int] -> [Int] foo xs = do 1 <- xs pure 2 main :: IO () main = do print $ foo [1,1] print $ foo [2]