[project @ 2001-08-22 12:24:41 by simonmar]
[ghc-hetmet.git] / ghc / tests / reader / should_compile / read007.hs
diff --git a/ghc/tests/reader/should_compile/read007.hs b/ghc/tests/reader/should_compile/read007.hs
deleted file mode 100644 (file)
index 55a4332..0000000
+++ /dev/null
@@ -1,8 +0,0 @@
-module ShouldCompile where
-
-import MyList
-
-myLength :: MyList a -> Int
-myLength Empty = 0
-myLength (x ::: xs) = 1 + myLength xs
-