aboutsummaryrefslogtreecommitdiff
path: root/test-suite/bugs/closed/bug_3477.v
blob: 0690c226709a127a3ad8a12d5b41c34058c06605 (plain)
1
2
3
4
5
6
7
8
9
10
Set Primitive Projections.
Set Implicit Arguments.
Record prod A B := pair { fst : A ; snd : B }.
Goal forall A B : Set, True.
Proof.
  intros A B.
  evar (a : prod A B); evar (f : (prod A B -> Set)).
  let a' := (eval unfold a in a) in
  set(foo:=eq_refl : a' = (@pair _ _ (fst a') (snd a'))).
Abort.