diff options
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 |