summaryrefslogtreecommitdiff
path: root/test-suite/bugs/closed/3010b.v
blob: 65fea42489eb25c93ce5fc908b781590137869f8 (plain)
1
2
3
4
5
Definition wtf (n : nat) : nat :=
  (match n with
       0 => (fun H : n = 0 => 0)
     | S n' => (fun H : n = S n' => 0)
   end) (eq_refl n).