blob: b70235fa9bd01cbd9b37e10f793bcd0a80fb98fb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
{-# LANGUAGE TemplateHaskell #-}
module T5358 where
import Language.Haskell.TH
t1, t2 :: Int
t1 x = x
t2 x = x
prop_x1 x = t1 x == t2 x
$(return [])
runTests = $( do VarI _ t _ <- reify (mkName "prop_x1")
error $ ("runTest called error: " ++ pprint t)
)
|