diff options
| author | Ben Gamari <bgamari.foss@gmail.com> | 2014-08-18 21:38:37 -0500 |
|---|---|---|
| committer | Austin Seipp <austin@well-typed.com> | 2014-08-18 23:26:18 -0500 |
| commit | 5b11b0401fecc848fe0db1fc060593a6ee8a560c (patch) | |
| tree | 8c8647d89403d5895295d280da11982e99b48b88 | |
| parent | 3a67aba2be3a7a6681d4349033c064596ce7fcde (diff) | |
| download | haskell-5b11b0401fecc848fe0db1fc060593a6ee8a560c.tar.gz | |
concurrent/should_run/throwto002: DoRec -> RecursiveDo
Summary: Test case used old extension name; update it.
Test Plan: validate
Reviewers: austin
Reviewed By: austin
Subscribers: simonmar, relrod, ezyang, carter
Differential Revision: https://phabricator.haskell.org/D161
| -rw-r--r-- | testsuite/tests/concurrent/should_run/throwto002.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testsuite/tests/concurrent/should_run/throwto002.hs b/testsuite/tests/concurrent/should_run/throwto002.hs index e7fcc36012..7cb5709129 100644 --- a/testsuite/tests/concurrent/should_run/throwto002.hs +++ b/testsuite/tests/concurrent/should_run/throwto002.hs @@ -1,4 +1,4 @@ -{-# LANGUAGE DoRec, ScopedTypeVariables #-} +{-# LANGUAGE RecursiveDo, ScopedTypeVariables #-} import Control.Concurrent import Control.Exception import Data.Array |
