Is it somehow possible to do reify in GHCi?
When I try it using 'runQ' it complains "can not do reify in the IO monad".
>>> runQ (reify ''Bool)
Template Haskell error: Can't do `reify' in the IO monad
*** Exception: user error (Template Haskell failure)
I'm not looking for :t or something, only for a way to quickly check what reify returns without writing it to a file and loading that file into GHCi.
 
    