summaryrefslogtreecommitdiff
path: root/test-suite/failure/Case8.v
blob: feae29a7a553a71ac0c9ab23d53055769cd78400 (plain)
1
2
3
4
5
6
7
8
Inductive List (A : Set) : Set :=
  | Nil : List A
  | Cons : A -> List A -> List A.

Type match Nil nat return nat with
     | b => b
     | Cons _ _ _ as d => d
     end.