From 399a5b46591dfbee0499d6afa1bb80ad2fd52598 Mon Sep 17 00:00:00 2001 From: Matthew Pickering Date: Fri, 27 Nov 2015 16:16:39 +0100 Subject: 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 --- testsuite/tests/quasiquotation/qq008/Test.hs | 2 +- testsuite/tests/quasiquotation/qq008/qq008.stderr | 4 ---- 2 files changed, 1 insertion(+), 5 deletions(-) delete mode 100644 testsuite/tests/quasiquotation/qq008/qq008.stderr (limited to 'testsuite/tests/quasiquotation/qq008') 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 -- cgit v1.2.1