.
[clean-tests.git] / funcdeps / test.icl
diff --git a/funcdeps/test.icl b/funcdeps/test.icl
deleted file mode 100644 (file)
index 3f9bb21..0000000
+++ /dev/null
@@ -1,9 +0,0 @@
-module test
-
-import StdEnv
-
-class fmap t :: (a -> b) (t a) -> t b
-
-instance fmap ((,)a) where fmap f (a, b) = (a, f b)
-
-Start = fmap inc (42, 37)