packages feed

liquidhaskell-0.8.10.7: tests/reflect/neg/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 "y"

{-@ pf :: _ -> { xVar = yVar } @-}
pf () = ()