[project @ 2001-08-22 12:24:41 by simonmar]
[ghc-hetmet.git] / ghc / tests / stranal / should_compile / str002.hs
diff --git a/ghc/tests/stranal/should_compile/str002.hs b/ghc/tests/stranal/should_compile/str002.hs
deleted file mode 100644 (file)
index 65fb8a7..0000000
+++ /dev/null
@@ -1,12 +0,0 @@
--- !!! Recursive newtypes
---     Needs -O
--- This one made GHC < 5.00.2 go into an 
--- infinite loop in the strictness analysier
-
-module Foo where
-
-newtype V = MkV V
-
-f :: V -> V
-f (MkV v) = v
-