aboutsummaryrefslogtreecommitdiff
path: root/test-suite/bugs/closed/3417.v
blob: 2931fbda52327b5ed0d9165dbd6c863b5946a2e6 (plain)
1
2
3
4
5
6
7
Require Setoid.

Goal forall {T}(a b : T), b=a -> {c | c=b}.
Proof.
intros T a b H.
setoid_rewrite H.
Abort.