diff options
Diffstat (limited to 'testsuite/tests/arrows/should_compile/arrowrec1.hs')
-rw-r--r-- | testsuite/tests/arrows/should_compile/arrowrec1.hs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/testsuite/tests/arrows/should_compile/arrowrec1.hs b/testsuite/tests/arrows/should_compile/arrowrec1.hs index 57b6de783c..b5a575ec66 100644 --- a/testsuite/tests/arrows/should_compile/arrowrec1.hs +++ b/testsuite/tests/arrows/should_compile/arrowrec1.hs @@ -7,7 +7,7 @@ import Data.Char f :: ArrowLoop a => a Char Int f = proc x -> do - a <- returnA -< ord x - rec b <- returnA -< ord c - ord x - c <- returnA -< chr a - returnA -< b + ord c + a <- returnA -< ord x + rec b <- returnA -< ord c - ord x + c <- returnA -< chr a + returnA -< b + ord c |