summaryrefslogtreecommitdiff
path: root/testsuite/tests/cabal/sigcabal02/p/P.hs
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/tests/cabal/sigcabal02/p/P.hs')
-rw-r--r--testsuite/tests/cabal/sigcabal02/p/P.hs12
1 files changed, 0 insertions, 12 deletions
diff --git a/testsuite/tests/cabal/sigcabal02/p/P.hs b/testsuite/tests/cabal/sigcabal02/p/P.hs
deleted file mode 100644
index dec6b41c94..0000000000
--- a/testsuite/tests/cabal/sigcabal02/p/P.hs
+++ /dev/null
@@ -1,12 +0,0 @@
-module P where
-
-import qualified Map
-import qualified Set
-
-foo = do
- let x = Map.insert 0 "foo"
- . Map.insert (6 :: Int) "foo"
- $ Map.empty
- print (Map.lookup 1 x)
- print (Set.size (Map.keysSet x))
- return x