summaryrefslogtreecommitdiff
path: root/testsuite/tests/ghc-regress/quasiquotation/qq004/qq004.hs
blob: c95b94ef0210a138ef4406ede61405674cf31a2f (plain)
1
2
3
4
5
6
7
8
9
{-# LANGUAGE QuasiQuotes #-}
module Main where

main :: IO ()
main = p undefined
  where
    p = \parse -> case () of
                    [parse||] -> return ()
                    _ -> return ()