packages feed

ghc-exactprint-0.2: tests/examples/Stmts.hs

module Stmts where

-- Make sure we get all the semicolons in statements

foo :: IO ()
foo = do
  do { ;;;; a }
  a

bar :: IO ()
bar = do
  { ;
    a ;;
    b
  }

baz :: IO ()
baz = do { ;; s ; s ; ; s ;; }

a = undefined
b = undefined
s = undefined