summaryrefslogtreecommitdiff
path: root/test-suite/bugs/closed/3050.v
blob: 4b187224311e9c57c7d20bd47cc596f7dca1279d (plain)
1
2
3
4
5
6
7
Goal forall A B, A * B -> A.
Proof.
intros A B H.
match goal with
  | [ H : _ * _ |- _ ] => exact (fst H)
end.
Qed.