summaryrefslogtreecommitdiff
path: root/test-suite/failure/Case16.v
blob: f994a8f2fa1cfbed7896fe7a35f2ba7a6cda03dc (plain)
1
2
3
4
5
6
7
8
9
(* Check for redundant clauses *)

Check [x]Cases x x of
   O (S (S y)) => true
 | (S _) (S (S y)) => true
 | _ (S (S x)) => false 
 | (S y) O => true 
 | _ _ => true
end.