summaryrefslogtreecommitdiff
path: root/testsuite/tests/typecheck/should_compile/valid_hole_fits.hs
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/tests/typecheck/should_compile/valid_hole_fits.hs')
-rw-r--r--testsuite/tests/typecheck/should_compile/valid_hole_fits.hs37
1 files changed, 37 insertions, 0 deletions
diff --git a/testsuite/tests/typecheck/should_compile/valid_hole_fits.hs b/testsuite/tests/typecheck/should_compile/valid_hole_fits.hs
new file mode 100644
index 0000000000..39939ba692
--- /dev/null
+++ b/testsuite/tests/typecheck/should_compile/valid_hole_fits.hs
@@ -0,0 +1,37 @@
+module Foo where
+
+import Prelude hiding (putStr, putStrLn)
+import qualified System.IO (putStr, putStrLn)
+import Data.Maybe
+import qualified ValidHoleFits
+
+ps :: String -> IO ()
+ps = putStrLn
+
+a :: Int -> IO Int
+a _ = return 1
+b :: Int -> IO Int
+b _ = return 2
+c :: Int -> IO Int
+c _ = do { x <- a 0
+ ; y <- _ x
+ ; return y }
+
+test :: [Maybe a] -> [a]
+test = _
+
+test2 :: Integer -> ValidHoleFits.Moo
+test2 = _
+
+k :: Maybe Integer
+k = _ 2
+
+f :: String
+f = show _
+
+
+h :: String
+h = show (_ (_ :: Bool))
+
+main :: IO ()
+main = _ "hello, world"