summaryrefslogtreecommitdiff
path: root/testsuite/tests/ado
diff options
context:
space:
mode:
authorZiyang Liu <unsafeFixIO@gmail.com>2022-04-23 21:31:54 -0700
committerMarge Bot <ben+marge-bot@smart-cactus.org>2022-05-06 19:22:22 -0400
commite2ae9518c0373db7a99058a09388043a66af80ad (patch)
treea14fbe0c8d4703b022b9193275237ea09a81173b /testsuite/tests/ado
parent73b22ff196160036ac10b762bf3a363fa8a451ad (diff)
downloadhaskell-e2ae9518c0373db7a99058a09388043a66af80ad.tar.gz
Allow `let` just before pure/return in ApplicativeDo
The following is currently rejected: ```haskell -- F is an Applicative but not a Monad x :: F (Int, Int) x = do a <- pure 0 let b = 1 pure (a, b) ``` This has bitten me multiple times. This MR contains a simple fix: only allow a "let only" segment to be merged with the next (and not the previous) segment. As a result, when the last one or more statements before pure/return are `LetStmt`s, there will be one more segment containing only those `LetStmt`s. Note that if the `let` statement mentions a name bound previously, then the program is still rejected, for example ```haskell x = do a <- pure 0 let b = a + 1 pure (a, b) ``` or the example in #18559. To support this would require a more complex approach, but this is IME much less common than the previous case.
Diffstat (limited to 'testsuite/tests/ado')
-rw-r--r--testsuite/tests/ado/ado001.hs11
-rw-r--r--testsuite/tests/ado/ado001.stdout4
-rw-r--r--testsuite/tests/ado/ado011.hs26
-rw-r--r--testsuite/tests/ado/ado011.stdout2
-rw-r--r--testsuite/tests/ado/all.T1
5 files changed, 37 insertions, 7 deletions
diff --git a/testsuite/tests/ado/ado001.hs b/testsuite/tests/ado/ado001.hs
index 6abce177e0..a72d0ca3a7 100644
--- a/testsuite/tests/ado/ado001.hs
+++ b/testsuite/tests/ado/ado001.hs
@@ -2,6 +2,7 @@
module Main where
import Control.Applicative
+import Data.Maybe
import Text.PrettyPrint as PP
(a:b:c:d:e:f:g:h:_) = map (\c -> doc [c]) ['a'..]
@@ -85,7 +86,7 @@ test8 = do
return () `const` (x2,x3,x4)
-- test that Lets don't get in the way
--- ((a | (b; c)) | d) | e
+-- (((a | (b; c)) | d) | e) | pure
test9 :: M ()
test9 = do
x1 <- a
@@ -109,7 +110,7 @@ test10 = do
x5 <- e
return (const () (x3,x4,x5))
--- (a | b)
+-- (a | b) | pure
-- This demonstrated a bug in RnExpr.segments (#11612)
test11 :: M ()
test11 = do
@@ -160,10 +161,10 @@ instance Functor M where
instance Applicative M where
pure a = M $ \_ -> (Nothing, a)
M f <*> M a = M $ \p ->
- let (Just d1, f') = f True
- (Just d2, a') = a True
+ let (d1, f') = f True
+ (d2, a') = a True
in
- (Just (maybeParen p (d1 <+> char '|' <+> d2)), f' a')
+ (Just (maybeParen p (fromMaybe (text "pure") d1 <+> char '|' <+> fromMaybe (text "pure") d2)), f' a')
instance Monad M where
return = pure
diff --git a/testsuite/tests/ado/ado001.stdout b/testsuite/tests/ado/ado001.stdout
index 365860f55e..f4f576e084 100644
--- a/testsuite/tests/ado/ado001.stdout
+++ b/testsuite/tests/ado/ado001.stdout
@@ -6,7 +6,7 @@ a; g
a; (b | (c; (d; (e | (f; g)))))
(a | b); (c | d)
a; ((b | c) | d)
-((a | (b; c)) | d) | e
+(((a | (b; c)) | d) | e) | pure
((a | b); (c | d)) | e
-a | b
+(a | b) | pure
a | (b; c)
diff --git a/testsuite/tests/ado/ado011.hs b/testsuite/tests/ado/ado011.hs
new file mode 100644
index 0000000000..5a164b4787
--- /dev/null
+++ b/testsuite/tests/ado/ado011.hs
@@ -0,0 +1,26 @@
+{-# LANGUAGE ApplicativeDo, DerivingStrategies, GeneralizedNewtypeDeriving #-}
+
+module Main where
+
+import Data.Functor.Identity
+
+newtype F a = F (Identity a)
+ deriving newtype (Functor, Applicative, Show)
+
+x :: F (Int, Int)
+x = do
+ a <- pure 0
+ let b = 1
+ pure (a, b)
+
+y :: F (Int, Int, Int)
+y = do
+ a <- pure 0
+ let b = 1
+ let c = b + 1
+ pure (a, b, c)
+
+main :: IO ()
+main = do
+ print x
+ print y
diff --git a/testsuite/tests/ado/ado011.stdout b/testsuite/tests/ado/ado011.stdout
new file mode 100644
index 0000000000..6cb5d29c6c
--- /dev/null
+++ b/testsuite/tests/ado/ado011.stdout
@@ -0,0 +1,2 @@
+Identity (0,1)
+Identity (0,1,2)
diff --git a/testsuite/tests/ado/all.T b/testsuite/tests/ado/all.T
index 7369f9e986..7bd416a570 100644
--- a/testsuite/tests/ado/all.T
+++ b/testsuite/tests/ado/all.T
@@ -8,6 +8,7 @@ test('ado007', normal, compile, [''])
test('ado008', normal, compile, [''])
test('ado009', normal, compile, [''])
test('ado010', normal, compile, [''])
+test('ado011', normal, compile_and_run, [''])
test('T11607', normal, compile_and_run, [''])
test('ado-optimal', normal, compile_and_run, [''])
test('T12490', normal, compile, [''])