haskell-tools-builtin-refactorings-1.0.0.0: examples/TH/Splice/Names.hs
{-# LANGUAGE TemplateHaskell #-}
module TH.Splice.Names where
import TH.Splice.Define
data A = A
$(nameOf ''A)
nameOf ''A
$(nameOf 'A)
nameOf 'A
{-# LANGUAGE TemplateHaskell #-}
module TH.Splice.Names where
import TH.Splice.Define
data A = A
$(nameOf ''A)
nameOf ''A
$(nameOf 'A)
nameOf 'A