summaryrefslogtreecommitdiff
path: root/testsuite/tests/parser
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/tests/parser')
-rw-r--r--testsuite/tests/parser/should_compile/T7476/T7476.hs2
-rw-r--r--testsuite/tests/parser/should_compile/T7476/T7476.stdout2
2 files changed, 2 insertions, 2 deletions
diff --git a/testsuite/tests/parser/should_compile/T7476/T7476.hs b/testsuite/tests/parser/should_compile/T7476/T7476.hs
index 34ac453752..48f2f1e734 100644
--- a/testsuite/tests/parser/should_compile/T7476/T7476.hs
+++ b/testsuite/tests/parser/should_compile/T7476/T7476.hs
@@ -1,2 +1,2 @@
import Control.Applicative
-main = show <$> pure 1 >>= print
+main = (pure 1 >>= print) <**> pure show
diff --git a/testsuite/tests/parser/should_compile/T7476/T7476.stdout b/testsuite/tests/parser/should_compile/T7476/T7476.stdout
index f6e15d592e..a66ff2f16a 100644
--- a/testsuite/tests/parser/should_compile/T7476/T7476.stdout
+++ b/testsuite/tests/parser/should_compile/T7476/T7476.stdout
@@ -1 +1 @@
-import Control.Applicative ( (<$>) )
+import Control.Applicative ( (<**>) )