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

Fail Type (match Nil nat return List nat with
      | NIL   => NIL
      | (CONS _ _)  => NIL
      end).