sbv-14.0: SBVTestSuite/TestSuite/CompileTests/PCase/PCase41.hs
{-# LANGUAGE QuasiQuotes #-}
{-# OPTIONS_GHC -Wall -Werror -ddump-splices #-}
module T where
import Expr
import Data.SBV
import Data.SBV.TP
-- Negative: parse error (else keyword in wrong position)
t :: SExpr -> Proof SBool
t e = [pCase| e of
Zero -> undefined
Var s -> ite (s .== "a") undefined else undefined
Num _ -> undefined
|]