diff options
Diffstat (limited to 'testsuite/tests/lib/Regex/regex001.hs')
-rw-r--r-- | testsuite/tests/lib/Regex/regex001.hs | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/testsuite/tests/lib/Regex/regex001.hs b/testsuite/tests/lib/Regex/regex001.hs deleted file mode 100644 index 1c9393c1b2..0000000000 --- a/testsuite/tests/lib/Regex/regex001.hs +++ /dev/null @@ -1,11 +0,0 @@ -module Main where - -import Control.Exception -import Text.Regex.Posix - --- caused GHC 6.0 to crash, due to regfree'ing the regex after a --- failed regcomp. -main = sequence_ - [ try ("abc" =~~ "[[[" :: IO Bool) :: IO (Either IOException Bool) - | _ <- [1..10000] ] - |