summaryrefslogtreecommitdiff
path: root/testsuite/tests/th/T11046_helper.hs
blob: f7fa19cb513f114923393d0981f97426aec1d1bf (plain)
1
2
3
4
5
6
7
8
9
{-# Language TemplateHaskell #-}
module T11046_helper where
import Language.Haskell.TH

check :: String -> Q [Dec]
check x = do mb <- lookupTypeName x
             case mb of
               Nothing -> fail "Bug #11046 is still present."
               Just _  -> return []