summaryrefslogtreecommitdiff
path: root/testsuite/tests/th/T14681.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/tests/th/T14681.stderr')
-rw-r--r--testsuite/tests/th/T14681.stderr14
1 files changed, 12 insertions, 2 deletions
diff --git a/testsuite/tests/th/T14681.stderr b/testsuite/tests/th/T14681.stderr
index f9838186ca..8be521ff01 100644
--- a/testsuite/tests/th/T14681.stderr
+++ b/testsuite/tests/th/T14681.stderr
@@ -1,6 +1,6 @@
-T14681.hs:7:2-32: Splicing declarations
+T14681.hs:8:2-32: Splicing declarations
[d| f = \ (Identity x) -> x |] ======> f = \ (Identity x) -> x
-T14681.hs:(8,2)-(9,63): Splicing declarations
+T14681.hs:(9,2)-(10,63): Splicing declarations
[d| g = $(pure
$ VarE '(+) `AppE` LitE (IntegerL (- 1))
`AppE` (LitE (IntegerL (- 1)))) |]
@@ -9,3 +9,13 @@ T14681.hs:(8,2)-(9,63): Splicing declarations
`AppE` (LitE (IntegerL (- 1)))>]
======>
g = (+) (-1) (-1)
+T14681.hs:(11,2)-(12,66): Splicing declarations
+ [d| h _
+ = $(pure
+ $ VarE '(+#) `AppE` LitE (IntPrimL (- 1))
+ `AppE` (LitE (IntPrimL (- 1)))) |]
+ pending(rn) [<spn, pure
+ $ VarE '(+#) `AppE` LitE (IntPrimL (- 1))
+ `AppE` (LitE (IntPrimL (- 1)))>]
+ ======>
+ h _ = (+#) -1# -1#