summaryrefslogtreecommitdiff
path: root/testsuite/tests/parser/should_fail/NoDoAndIfThenElse.hs
blob: 2439205e3ef6750c90387c837de0f590eb248060 (plain)
1
2
3
4
5
6
7
8
9

{-# LANGUAGE NoDoAndIfThenElse #-}

module NoDoAndIfThenElse where

foo :: IO ()
foo = do if True
         then return ()
         else return ()