diff options
author | Matthew Pickering <matthewtpickering@gmail.com> | 2015-11-27 16:16:39 +0100 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2015-11-29 13:22:14 +0100 |
commit | 399a5b46591dfbee0499d6afa1bb80ad2fd52598 (patch) | |
tree | fba2b8453d445a023ad421be6d84366b12da3c80 /testsuite/tests/quasiquotation/qq008 | |
parent | 55c737fdeca666c0a6ee898bd368d4d11a47499a (diff) | |
download | haskell-399a5b46591dfbee0499d6afa1bb80ad2fd52598.tar.gz |
Remove deprecated quasiquoter syntax.
In spirit, this reverts 9ba922ee06b048774d7a82964867ff768a78126e
The syntax has been deprecated with a warning since 2010.
Reviewers: austin, bgamari
Reviewed By: bgamari
Subscribers: thomie
Differential Revision: https://phabricator.haskell.org/D1530
Diffstat (limited to 'testsuite/tests/quasiquotation/qq008')
-rw-r--r-- | testsuite/tests/quasiquotation/qq008/Test.hs | 2 | ||||
-rw-r--r-- | testsuite/tests/quasiquotation/qq008/qq008.stderr | 4 |
2 files changed, 1 insertions, 5 deletions
diff --git a/testsuite/tests/quasiquotation/qq008/Test.hs b/testsuite/tests/quasiquotation/qq008/Test.hs index c04f427f63..fbaa80e18a 100644 --- a/testsuite/tests/quasiquotation/qq008/Test.hs +++ b/testsuite/tests/quasiquotation/qq008/Test.hs @@ -6,7 +6,7 @@ import QQ f :: [pq| foo |] -- Expands to Int -> Int [pq| blah |] -- Expands to f x = x -h [pq| foo |] = f [$pq| blah |] * 8 +h [pq| foo |] = f [pq| blah |] * 8 -- Expands to h (Just x) = f (x+1) * 8 diff --git a/testsuite/tests/quasiquotation/qq008/qq008.stderr b/testsuite/tests/quasiquotation/qq008/qq008.stderr deleted file mode 100644 index b13e999463..0000000000 --- a/testsuite/tests/quasiquotation/qq008/qq008.stderr +++ /dev/null @@ -1,4 +0,0 @@ - -Test.hs:9:19: - Warning: Deprecated syntax: - quasiquotes no longer need a dollar sign: $pq |