[project @ 2001-08-22 12:24:41 by simonmar]
[ghc-hetmet.git] / ghc / tests / numeric / should_run / num007.hs
diff --git a/ghc/tests/numeric/should_run/num007.hs b/ghc/tests/numeric/should_run/num007.hs
deleted file mode 100644 (file)
index 1c40ecf..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
--- Exercising the reading of positive numbers at various bases.
---
-module Main(main) where
-
-import Numeric
-
-main = 
- do
-  putStrLn (show (readOct "00000111"))
-  putStrLn (show (readDec "00000111"))
-  putStrLn (show (readHex "00000111"))
-  putStrLn (show (readOct "-24"))
-  putStrLn (show (readDec "-24"))
-  putStrLn (show (readHex "-24"))
-  putStrLn (show ((readOct ::ReadS Integer) "3248784372843778438743"))
-  putStrLn (show ((readDec ::ReadS Integer) "3248784372843778438743"))
-  putStrLn (show ((readHex ::ReadS Integer) "3248784372843778438743"))