ref: 5d4c8718a6384d8a27e0bdbf09bc517ac87a4c26 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]