liquidhaskell-0.8.10.7: tests/reflect/pos/ReflString1.hs
-- cf https://github.com/ucsd-progsys/liquidhaskell/issues/1044
{-@ LIQUID "--reflection" @-}
module ReflectString where
data Vname = V String
{-@ reflect xVar @-}
xVar :: Vname
xVar = V "x"
{-@ reflect yVar @-}
yVar :: Vname
yVar = V "x"
{-@ pf :: _ -> { xVar = yVar } @-}
pf () = ()