summaryrefslogtreecommitdiff
path: root/testsuite/tests/concurrent/prog003/Collection.hs
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/tests/concurrent/prog003/Collection.hs')
-rw-r--r--testsuite/tests/concurrent/prog003/Collection.hs11
1 files changed, 0 insertions, 11 deletions
diff --git a/testsuite/tests/concurrent/prog003/Collection.hs b/testsuite/tests/concurrent/prog003/Collection.hs
deleted file mode 100644
index 73a71f6714..0000000000
--- a/testsuite/tests/concurrent/prog003/Collection.hs
+++ /dev/null
@@ -1,11 +0,0 @@
-{-# LANGUAGE MultiParamTypeClasses, FunctionalDependencies #-}
-module Collection where
-
-
-class Show e => Col c e | c -> e where
- newCol :: IO c
- insertCol :: c -> e -> IO ()
- deleteCol :: c -> e -> IO Bool
- findCol :: c -> e -> IO Bool
- printCol :: c -> IO ()
- cntCol :: c -> IO Int