diff options
Diffstat (limited to 'testsuite/tests/printer/Ppr007.hs')
-rw-r--r-- | testsuite/tests/printer/Ppr007.hs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/testsuite/tests/printer/Ppr007.hs b/testsuite/tests/printer/Ppr007.hs new file mode 100644 index 0000000000..65ff9a7b63 --- /dev/null +++ b/testsuite/tests/printer/Ppr007.hs @@ -0,0 +1,8 @@ +{-# LANGUAGE ApplicativeDo #-} +module Ppr007 where + +g :: IO () +g = do + x <- getChar + 'a' <- return (3::Int) -- type error + return () |