packages feed

liquidhaskell-0.9.0.2.1: tests/neg/CharLiterals.hs

{-@ LIQUID "--expect-any-error" @-}
-- see #1286

module CharLiterals where

{-@ fails :: {v:Bool | v} @-}
fails =  'a' == 'b'

{-@ ok :: {v:Bool | v} @-}
ok = "a" == "a"